Login
C Programming
1)
va_list is an array that holds information needed by va_arg and va_end.
A)
True
B)
False
C)
Error: ptr must be type of va_list
D)
No error
Next
Show Answer:
Show Answer
More Question
What will be the output of the program #includestdio.hint main() int i=4, j=8; printf(d, d, d\n, ij&ji, ij&ji, i^j); return 0;
The first argument to be supplied at command-line must always be count of total arguments.
What will be the output of the program #includestdio.h#define SQR(x)(xx)int main() int a, b=3; a = SQR(b+2); printf(d\n, a); return 0;
What will be the output of the program #includestdio.hint main() char p; p=hello; printf(s\n, &&p); return 0;
What will be the output of the program #includestdio.hint main() char c=48; int i, mask=01; for(i=1; i=5; i++) printf(c, cmask); mask = mask1; return 0;