//*********************************************************//// Prepared By : ASHUTOSH SINGH////*********************************************************
#include <iostream.h>#include<conio.h>
void 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();
}
No comments:
Post a Comment