#include <iostream>
int main()
{
std::cout << "Printable ASCII [32..126]:
";
for (char i = ' '; i <= '~'; ++i) {
std::cout << i << ((i % 16 == 15) ? '
' : ' ');
}
}
//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);
Code Example |
---|
Cpp :: lists occurrences of characters in the string c++ |
Cpp :: C++ if...else...else if statement |
Cpp :: declare a tab c++ |
Cpp :: Abstract factory C++ code |
Cpp :: c++ linked list delete node |
Cpp :: if else in c++ |
Cpp :: assign one vector to another c++ |
Cpp :: shortest path in unweighted graph bfs |
Cpp :: c++ print array of arrays with pointer |
Cpp :: c++ lambda as variable |
Cpp :: string c++ |
Cpp :: round c++ |
Cpp :: queue operations c++ |
Cpp :: c++ else if |
Cpp :: memcpy in cpp |
Cpp :: enum in c++ |
Cpp :: how to set arrays as function parameters in c++ |
Cpp :: pause the console c++ |
Cpp :: ue4 c++ switch enum |
Cpp :: cpp algorithm iota |
Cpp :: recherche recursive le max dans une liste |
Cpp :: how to do if command in c++ |
Cpp :: how to use printf with <cinttypes c++ |
Cpp :: arithmetic progression c++ |
Cpp :: what is xor_eq c++ |
Cpp :: PascalName seperate strings |
Cpp :: javidx9 age |
Cpp :: array di struct |
Cpp :: start google |
Cpp :: how to modify set C++ |