Answers for "how to use the ascii value in c++"

C++
0

ascii allowed in c++

#include <iostream>
int main()
{
  std::cout << "Printable ASCII [32..126]:\n";
  for (char i = ' '; i <= '~'; ++i) {
    std::cout << i << ((i % 16 == 15) ? '\n' : ' ');
  }
}
Posted by: Guest on April-01-2021
1

C++ ASCII Value

//Find the ASCII value of a character and character of an ASCII value.
    char x;
    int y;

    cout<<"Enter a Character: ";
    cin>>x;
    cout<<"Enter the ASCII value: ";
    cin>>y;
    cout<<"The ASCII value of "<<x<<" is "<<int(x)<<endl;
    cout<<"The Character of the ASCII value of "<<y<<" is "<<char(y);
Posted by: Guest on March-13-2022

Code answers related to "how to use the ascii value in c++"

Browse Popular Code Answers by Language