Functions And Procedures In C Plus Plus - Study Mode
[#91] Which of the following is true about function parameters in C++?
Correct Answer
(A) They are variables used to pass data into functions
[#92] What is the purpose of the 'void' keyword in a function declaration in C++?
Correct Answer
(C) Indicates that the function does not return a value
[#93] What is the maximum number of arguments or parameters that can be present in one function call?
Correct Answer
(B) 256
[#94] What is the use of Namespace?
Correct Answer
(B) To structure a program into logical units
[#95] How can you access the arguments that are manipulated in the function?
Correct Answer
(A) va_list