1.

What is the output of the following program?  Int f (int a, int *pb, int **ppc) { int b, c; **ppc += 1;  c = *ppc; *pb += 2; b = *pb; a += 3; return a + b + c; } void main() { int z, *y, **x, z = 4; y = &z; x = &y; printf (“%d”, f (z, y, x)); }  

A. 19
B. 18
C. 22
D. 24
Answer» B. 18


Discussion

No Comment Found

Related MCQs