I have the following code and am asked to how many times "A", "B", "C", "D", "E" will be printed
fun() {
printf("A");
fork();
printf("B");
if (fork() != 0) {
printf("C");
fork();
printf("D");
}
printf("E");
}
so it should be:
A
A
B
E
im not sure if my answer above is correct? and what the line if(fork() !=0 ) do?
