write a program to the ASCII values and their eqivalent character using a while loop the ASCII values vary from 0to 255.

 write a program to the ASCII values and their  equivalent character using a while loop the ASCII values vary from 0to 255.

#include<stdio.h>

#include<conio.h>

int main()

{

int i;

char ascii;

for(i=0;i<=255;i++)

{

printf("%c=%d\n",i,i);

}

}

 











Comments

Popular posts from this blog

class with array in c++ (memory allocatin & using array in classes)

constructor with default arguments

constructor overloading in c++ programming