08-11-2005 02:18 AM
08-11-2005 03:52 AM
In C, you can freely assign int and char variables to each other, as they are both integral types. So:
int i;
char ch;
i = 65;
ch = i;
printf ("%c", ch);
will print the character 'A'. Or have I misunderstood your question?
JR
08-11-2005 07:30 AM