Program to Print All ASCII Values in C Programming
Program :
Program :
#include<stdio.h>
#include<conio.h>
void main()
{
int i=0;
char ch;
clrscr();
for(i=0;i<256;i++)
{
printf("%c ",ch);
ch = ch + 1;
}
}
No comments:
Post a Comment