fork(1) download
  1. #include <stdio.h>
  2. #include <unistd.h>
  3.  
  4. int main()
  5. {
  6. if (fork() || fork() && fork())
  7. {
  8. printf("VIT-AP \n");
  9. fork();
  10. }
  11. printf("Hello \n");
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
VIT-AP 
Hello