Google News
logo
CPP - Quiz(MCQ)
What are the actual parameters in C++?
A)
Variables that are never used in the function
B)
Parameters with which functions are called
C)
Variables other than passed parameters in a function
D)
Parameters which are used in the definition of a function

Correct Answer :   Parameters with which functions are called


Explanation : Actual parameters are those using which a function call is made i.e. which are actually passed in a function when that function is called.

Advertisement