Conversión ASCII CPP
{
// line 3 and 4 showing how to do in two different ways.
cout<<(int)'a'<<endl;
cout<<int('A')<<endl;
cout<<char(65)<<endl;
}
Tame Tortoise