“ASCII -Programm” 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 -Programm

# Python program to print
# ASCII Value of Character
 
# In c we can assign different
# characters of which we want ASCII value
 
c = 'g'
# print the ASCII value of assigned character in c
print("The ASCII value of '" + c + "' is", ord(c))
Annoyed Alpaca

Ähnliche Antworten wie “ASCII -Programm”

Fragen ähnlich wie “ASCII -Programm”

Weitere verwandte Antworten zu “ASCII -Programm” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen