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
Post a Comment