Sunday, 8 January 2012

to print all ascii value using"for loop"


#include<stdio.h>
#include<conio.h>
main()
{
int a,b;
clrscr();
printf("enter the numner");
scanf("%d",&a);
printf("\tASCII value is %c",a);
getch();
return 0;
}

No comments:

Post a Comment