/**********************************************************************************/
/* Program that print the single character list of ASCII codes from ! to ~ */
/**********************************************************************************/
#include <stdio.h>
#include <conio.h>
void main()
{
int i;
char c = ' ';
for (i = 0; i < 95; i++ )
{
printf("\n\n ASCII code of ' %c ' is %d",c++, c );
}
getch();
}
Your blog is amazing see mine too http://thetechhunt.blogspot.com/ ..it has many amazing graphical program including this ASCII one
ReplyDelete