fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char c;
  6. scanf("%c",&c);
  7. printf("%c",c);
  8. printf("%d",c);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5284KB
stdin
A
stdout
A65