

MCQOPTIONS
Saved Bookmarks
1. |
Which among the following is wrong call to the function void test(int x, int y=0, int z=0)? |
A. | test(5,6,7); |
B. | test(5); |
C. | test(); |
D. | test(5,6); |
Answer» D. test(5,6); | |