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

Binary Search, Linear Search, Selection Sort and Bubble sort Python Menu Program

Housie/Tambola using Python with Tickets in PDF file

100% Working C++ Tambola/Housie Code with 90 Unique Numbers