“ASCII CPP” Code-Antworten

c Erhalten Sie ASCII -Wert von 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;
}
Tough Teira

ASCII CPP

#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;
}
Hilarious Hippopotamus

Ähnliche Antworten wie “ASCII CPP”

Fragen ähnlich wie “ASCII CPP”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen