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. Default return type of functions in CPP is ____ .
Q. What is the output of the following code in C++?
Q. What is used to write/display to the console in C++?
Q. Which keyword is used to define macros in C++?
Q. Which of the following functions are performed by a constructor?
Q. Which container provides random access iterators?
Q. What is the other name used for functions inside a
Q. Can constructors be overloaded?
Q. Where a condition is checked to see whether to do one or more iteration is _____
Q. Which of the following gets called when an object is being created?
Discusssion
Login to discuss.