U
Q. What is the output of this program?
#include #include using namespace std; int funcion(char ch,...); int main() { int p, q; p = funcion('B', 2, 3, 4); q = funcion('3', 2.0, 2, '3', 2.0f, 10); cout << p<<" " << q; return 0; } int funcion(char ch,...) { return ch; }
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 one is not a correct variable type in C++?
Q. Exception handler are declared with _______ keywords:
Q. The function used to disply one character at a time
Q. In c++ ___________ Operator is used for Dynamic memory allocation
Q. String class have a concat() function that is used to _____________________
Q. Which of the following is not an advantage of secondary memory
Q. Maximum number of template arguments in a function template is
Discusssion
Login to discuss.