Introduction
I always like smilies and the ASCII characters can behave like good smileys and so I wrote a small utility to get all tha ASCII values of the characters and I can easily add them anywhere I prefer
The Code
Code: C
int i;
FILE *fp;
fp = fopen("c:\\code.txt","w");
for(i=0;i<256;i++)
{
fprintf(fp,"%d\t%c\n",i,i);
printf("%d\t%c\n",i,i);
}
fclose(fp);
