Mega Code Archive

 
Categories / C / Stdio H
 

Print the ASCII code for c

#include <stdio.h> int main( ) {  char c =   'A';    printf("%d",c);  }