fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char name[100];
  6. scanf("%s", name);
  7. printf("hello, %s", name);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5288KB
stdin
world
stdout
hello, world