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