Q146
What will be the output of the following C code? #include #include int f(...); int main() char c = 97; f(c); return 0; int f(...) va_list li; char c = va_arg(li, char); printf("%c ", c);
A.
Compile time error
AnswerB.
Undefined behaviour
C.
97
D.
a
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board