ASCII table from given range (33 to 256) | Printed Character against ASCII code

# include <iostream>
using namespace std;
int main(){


int asciil=33; // lower value
int asciih=256; // higher value

cout<<"Ascii codes -----Character"<<endl;
while (asciil<=asciih)
{
char c=asciil; // here the ascci of c is printed
cout<<asciil<<"---------------"<<c<<endl;
asciil++;
}

}

Comments

Popular posts from this blog

Umbrella activities in Software Engineering

Operating System | Best Definition of Opetating System