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 classes allow primitive types to be accessed as objects?
Q. Which operators is part of RTTI?
Q. How C++ compiler does differ between overloaded postfix and prefix operators?
Q. Which of the following concepts means waiting until runtime to determine which function to call?
Q. The function contain in the ios class to fill characters in the blank space
Q. Which one holds the values or constants in memory boxes?
Q. Which of the following is the correct way to define a function with default arguments in C++?
Discusssion
Login to discuss.