C++ Program to Print Entire ASCII Value table

 #include<iostream>

using namespace std;

int main()

{

char n=-128;

while(n<=127)

{

cout<<(int)n<<"="<<n<<"\t";

n++;

}

}a

Comments

Popular posts from this blog