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