Friday, 12 October 2012

Program To Print ASCII Code In C

#include<stdio.h>
#include<conio.h>
 
main()
 
{
 
int i;
 
clrscr();
 
{
     
printf("%d = %c ",i,i);
 
}
 
getch();
 
}

No comments:

Post a Comment