#include<stdio.h>#include<conio.h>void main(){ clrscr(); char ch; int i; for(i=1; i<255; i++) { ch=i; printf("%d -> %c\t",i, ch); } getch();}
No comments:
Post a Comment