fork download
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char* argv[])
  4. {
  5. char buf[100];
  6. printf("Enter your name: ");
  7. fgets(buf, 99, stdin);
  8. printf("%s <- This is your name!", buf);
  9. return 0;
  10. }
Success #stdin #stdout 0.02s 1724KB
stdin
George
stdout
Enter your name: George <- This is your name!