Ejemplo: c ++ obtiene el valor ascii de char
#include<iostream>
using namespace std;
int main ()
{
char c;
cout << "Enter a character : ";
cin >> c;
cout << "ASCII value of " << c <<" is : " << (int)c;
return 0;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)