|
Here is also a sample code thru which you can look 255 ASCII chracter codes
[code]
void main()
{
int i;
for (i=0;i<255;i++)
printf("[%c == %d]",i,i);
}
[\code]
Probably output will not be in a proper order which you can do by using formating functions
|