Sunday, May 15, 2016

Print All ASCII Value Table




#include<stdio.h>

int main() {
   int i = 0;
   char ch;
   printf("\n\n");
   for (i = 0; i < 256; i++) {
      printf("%c ", ch);
      ch = ch + 1;
   }
   return 0 ;
}



Share this

0 Comment to "Print All ASCII Value Table "

Post a Comment