C++ ASCII Code for Characters and Numbers




C++ ASCII Code for Characters and Numbers

#include <iostream>
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;
  return 0;
}

Output

Give character: Its ascii value is: 0 Give a number to convert to ascii: The ascii value of 0 is