CSE MCQs :: C++ - MCQs
- By default how the value are passed in c++?
- What will happen when we use void in argument passing?
- What will you use if you are not intended to get a return value?
- Where does the return statement returns the execution of the program?
- When will we use the function overloading?
- Overloaded functions are
- What will happen while using pass by reference
- When our function doesn't need to return anything means what we will as parameter in function?
- What are the advantages of passing arguments by reference?
A.
The values of those variables are passed to the function so that it can manipulate them
|
B.
The location of variable in memory is passed to the function so that it can use the same memory area for its processing
|
C.
The function declaration should contain ampersand (& in its type declaration)
|
D.
All of the mentioned
|