fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char text[20];
  6.  
  7. scanf("%s", text);
  8. printf("You entered: %s", text);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 2252KB
stdin
Hello
stdout
You entered: Hello