

MCQOPTIONS
Saved Bookmarks
1. |
What function will be called with the independent syntax test(5,6,7); ? |
A. | void test(int x, int y) |
B. | void test(int x=0, int y, int z) |
C. | int test(int x=0, y=0, z=0) |
D. | void test(int x, int y, int z=0) |
Answer» E. | |