Friday, April 12, 2013

Find ASCII value

ASCII Code 



#include <stdio.h>
#include <conio.h>
main()
{
int a=1;
while(a<=255)
{
printf("%d=%c\n,",a,a );
a++;
}
return 0;
}

No comments:

Post a Comment