Monday, 1 August 2011

To Find ASCII value of a character


//*********************************************************
//
//          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