Kodowanie ASCII
Jak w opisie – całe kodowanie ASCII.
Kompilator: Dev C++
//Kodowanie ASCII
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int a=122;
for(int x=65;x<91;x++)
{
cout<<"\t"<<(char)x<<" - "<<x<<"\t\t"<<(char)a<<" - "<<a<<endl;
a--;
}
system("PAUSE");
return EXIT_SUCCESS;
}