1.

void abc(int x=0, int y, int z=0){ cout << x << y << z;}32.What will be the output of the following program?

A. It results in compile-time error
B. It results in run time error
C. It prints 1 1 2
D. It prints 1 1 1
Answer» D. It prints 1 1 1


Discussion

No Comment Found