Consider the following code snippet using the fork() and wait() system calls. Assume that the code compiles and runs correctly, and that the system calls run successfully without any errors. int x = 3; while(x > 0) fork(); printf("hello"); wait(NULL); x--; The total number of times the printf statement is executed is …
Topic-wise GATE CS PYQs with verified steps
