#include <stdio.h>
#include <conio.h>
void main()
{
int i=0;
clrscr();
while(i<255)
{
printf("%d\t%c",i,i);
i=i+1;
}
getch();
}
Showing posts with label ASCII characters. Show all posts
Showing posts with label ASCII characters. Show all posts
Subscribe to:
Posts (Atom)
Related Post
Array:
String functions:
General (Loops-for/while)