Horje
char ascii c++ Code Example
char ascii c++
#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;
}




Cpp

Related
c++ read integers from file Code Example c++ read integers from file Code Example
Enter a key and display it's ascii value in c++ Code Example Enter a key and display it's ascii value in c++ Code Example
do while loop c++ loops continuously Code Example do while loop c++ loops continuously Code Example
include cpp Code Example include cpp Code Example
built in function in c++ for binary to decimal Code Example built in function in c++ for binary to decimal Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10