Tuesday, 3 May 2016

C++ Program to find ASCII Code

In this C++ program we will find ASCII value of an alphabet and also find an ASCII alphabet of given value

//Code starts
#include <iostream>
#include<conio.h>

using namespace std;

int main()
{
 char ascii;
 int numeric;
 cout<< "Give character: ";
 cin >> ascii;
 cout << "Its ascii value is: " << (int) ascii << endl;
 cout << "Give a number to convert to ascii: ";
 cin >> numeric;
 cout << "The ascii value of " << numeric << " is " << (char) numeric;
 getch ();
}
//Code Ends

OUTPUT:

Share:

Related Posts:

0 comments:

Post a Comment