fork(4) download
  1. /* Prints a message on the screen*/
  2. #include <stdio.h>
  3. main()
  4. {
  5. printf ("Just one small step for coders. One giant leap for");
  6. printf (" programmers!\n");
  7. return 0;
  8. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
Just one small step for coders. One giant leap for programmers!