C Program to Display Equivalent ASCII Code for 0 to 255


SOURCE CODE:
#include<stdio.h>
#include<conio.h>
void main()
{
int a;
clrscr();
for(a=1;a<=255;a++)
{
printf("\n%d=%c\n",a,a);
getch();
}
}
Previous
Next Post »

Still not found what you are looking for? Try again here.