Thread: shortcut
View Single Post
Old Nov 3rd, 2006, 2:50 PM   #3
Iftikhar
Programmer
 
Iftikhar's Avatar
 
Join Date: Oct 2006
Location: London
Posts: 40
Rep Power: 0 Iftikhar is on a distinguished road
Send a message via MSN to Iftikhar
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
__________________
Iftikhar Ahmed Khan
For doing an experiment on programmer's mood please visit http://uxisfyp1.brunel.ac.uk/cspgiak
Iftikhar is offline   Reply With Quote