In this C++ program we will find ASCII value of an alphabet and also find an ASCII alphabet of given value
//Code starts
//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:
0 comments:
Post a Comment