U
Q. What is the output of this program?
#include #include using namespace std; void List(int, ...); int main() { List(2, 5, 10); List(3, 6, 9, 7); return 0; } void List(int num, ...) { va_list a; int k; va_start(a, num); while (num-->0) { k = va_arg(a, int); cout << k; } va_end(a); }
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. The function contain in the class iomanip to fill characters in the un used space
Q. When a language has the capability to produce new data type mean, it can be called as …...
Q. The statement i++; is equivalent to
Q. What is the output of below program?
Q. What is the output of the following C++ code?
Q. Which one gives special meaning to the language compiler?
Q. Generic catch handler is represented by ______________ .
Q. Which of the following is the correct way to define a move assignment operator in C++?
Discusssion
Login to discuss.