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 of the following is the correct way to define a function with a return type in C++?
Q. How many types of comments are there in c++?
Q. What would be the output of the following program (in 32-bit systems)?
Q. Which operator is used to access the member of a namespace?
Q. Which of the following concepts means waiting until runtime to determine which function to call?
Q. Which of the following statements is correct about this pointer in C++?
Q. Which of the following C++ features allows a class to inherit from another class?
Q. When one object reference variable is assigned to another object reference variable then
Q. Which type of data file is analogous to an audio cassette tape?
Discusssion
Login to discuss.