fork download
  1. /* main program illustrating the UNIX fork() system call.
  2. Compile using cc -o main main.c
  3. */
  4. #include <stdio.h>
  5. #include<stdio.h>
  6. #include<unistd.h>
  7. int main(void)
  8. {
  9. printf("A");
  10. fork();
  11. printf("P\n");
  12. return 0;
  13. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
AP
AP