Friday, 13 April 2012

C program to print ASC|| value of character of keyboard


//C program to print ASC|| value of character of keyboard

#include<stdio.h


int main()
       int a; 
       for(a=0;a<=255;a++) 
          {
            printf("ASCII value of character %c: %d\n",a,a); 
          }
   return 0; 
}
/* OUTPUT */

No comments:

Post a Comment

Compiler for C,C++ and Python {paste your programme to see the output}