Please wait...
THANKU FOR BEING A PART OF OUR JOURNEY TO BRING "REVOLUTION IN EDUCATION"
We Genuinely APPRECIATE your PATIENCE

51
M: +3.00/-1.00

What is the output of the following program?
main()

{
int a = 10;
if ((fork () == 0))
a++;
printf(“%d\n”, a);
}

[ISRO CS May 2017]
A
B
C
D