R
Q. Output of the program?
#include<iostream> using namespace std; int fun(int x = 0, int y = 0, int z) { return (x + y + z); } int main() { cout << fun(10); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following statement is correct regarding destructor of base class?
Q. Which header file is used to pass unknown number of arguments to function?
Q. Choose the incorrect option
Q. Which of the following is accessed by a member function of a class?
Q. How many can max number of arguments present in function in the c99 compiler?
Q. Which of these keywords do we use for the declaration of the friend function?
Q. Which of the following is correct about friend functions?
Q. Which of the following statements about recursion in C++ is true?
Q. What will be the output of the following code? int a = 10, b = 3; cout << a % b;
Discusssion
Login to discuss.