Question
#include <stdio.h>
#include <stdarg.h>
void func(int, ...);
int main()
{
func(2, 3, 5, 7, 11, 13);
return 0;
}
void func(int n, ...)
{
int number, i = 0;
va_list start;
va_start(start, n);
while (i != 3)
{
number = va_arg(start, int);
i++;
}
printf("%d", number);
}
a.
3
b.
5
c.
7
d.
11
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this C code?
Similar Questions
Discover Related MCQs
Q. Which of the following function with ellipsis are illegal?
View solution
Q. Which of the following data-types are promoted when used as a parameter for an ellipsis?
View solution
Q. Which header file includes a function for variable number of arguments?
View solution
Q. Which of the following macro extracts an argument from the variable argument list (i.e ellipsis) and advance the pointer to the next argument?
View solution
Q. The type va_list is used in an argument list
View solution
Q. Each call of va_arg
View solution
Q. The standard header _______ is used for variable list arguments (…) in C.
View solution
Q. va_end does whatever
View solution
Q. Which of the following is NOT a delimiter for an input in scanf?
View solution
Q. If the conversion characters of int d, i, o, u and x are preceded by h, it indicates?
View solution
Q. Which of the following doesn’t require an & for the input in scanf?
View solution
Q. Which of the following is an invalid method for input?
View solution
Q. Which of the following represents the function for scanf?
View solution
Q. scanf returns as its value
View solution
Q. int sscanf(char *string, char *format, arg1, arg2, …)
View solution
Q. The conversion characters d, i, o, u, and x may be preceded by h in scanf to indicate
View solution
Q. The first and second arguments of fopen are
View solution
Q. For binary files, a ___ must be appended to the mode string.
View solution
Q. If there is any error while opening a file, fopen will return
View solution
Q. Which is true about getc returns?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!