Consider the following program. int main(){ int status; int counter = 1; if (fork() == 0) { counter++; printf(“%d”,counter); } else { if (fork() == 0) { printf(“5”,); counter--; printf(“%d”,counter); exit(0); } else { if (wait(&status) > 0) { printf(“6”); } } } printf(“3”); exit(0); } The output which is not possible from this program is
Reveal answer
Fill a bubble to check yourself