Exercises
Take a note of the program below. It has several fork()
and printf()
. How many A
, B
and C
will be printed?
How many A
, B
and C
will be printed?
(a). A: 1 time, B: 2 times, C: 2 times
(b). A: 1 time, B: 2 times, C: 4 times
(c). A: 1 time, B: 1 time, C: 2 times
(d). A: 1 time, B: 2 times, C: 3 times
Last updated
Was this helpful?