Vidyalelo
C Programming · Q120

File Input Output

Programming · C Programming · question 120

Q120

What will be the output of the following C code? #include int f(char chr, ...); int main() char c = 97; f(c); return 0; int f(char c, ...) printf("%c ", c);

A.
Compile time error
B.
Undefined behaviour
C.
97
D.
a
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board