Which of the following function call is correct for the function-02961
Which of the following function call is correct for the function prototype? defaultParameters ( int a, int b = 7, char z = '*' );
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Lecture No.34 - Quiz No.1.
Which of the following function call is correct for the function prototype? defaultParameters ( int a, int b = 7, char z = '*' );
defaultParameters (0, 0, '*', 0);
defaultParameters (6, '#');
defaultParameters (5, '8');
Depends on the size of array