Quiz
Let's take a quick quiz to know your basic knowledge of C++.
We'll cover the following...
1
Which of the following represents correct syntax of a function call in C++?
A)
func_call( parameter1 = 5, parameter2 = 10 );
B)
func_call( parameter1, parameter2 );
C)
func_call( parameter1; parameter2 );
Question 1 of 50 attempted