A
AA
I am trying to print a table of what integer corresponds to what
character. Can someone please tell me what is wrong with this code?
#include <stdio.h>
int main()
{
char line[9]; /* each word in the wordlist */
char d;
for (d=0; d<=255; d++)
printf("int=%d\tchar=%c\n",d,d);
}
Thanks in advance!
character. Can someone please tell me what is wrong with this code?
#include <stdio.h>
int main()
{
char line[9]; /* each word in the wordlist */
char d;
for (d=0; d<=255; d++)
printf("int=%d\tchar=%c\n",d,d);
}
Thanks in advance!