fork(1) download
  1. int main(void) {
  2. char name[50];
  3. scanf("%s", name);
  4. printf("hello, %s", name);
  5. return 0;
  6. }
  7.  
Success #stdin #stdout 0s 4320KB
stdin
Alex
stdout
hello, Alex