Friday, 12 October 2012
Program To Print ASCII Code In C
#include<stdio.h>
#include<conio.h>
main()
{
int i;
clrscr();
for(i=0;i<256;i++)
{
printf("%d = %c ",i,i);
}
getch();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment