Thursday, 9 January 2014

Program to Print All ASCII Value Table in C Programming

Program to Print All ASCII Values in C Programming
Program :
#include<stdio.h>
#include<conio.h>
void main()
{
int i=0;
char ch;
clrscr();
for(i=0;i<256;i++)
  {
    printf("%c ",ch);
    ch = ch + 1;
  }
}

No comments:

Post a Comment