fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. printf("Hello!\n");
  6. int ch = getchar();
  7. printf("%c", ch);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0.02s 1724KB
stdin
Standard input is empty
stdout
Hello!
�