Q248
What will be the output of the following C code? #include void m(int p, int q) printf("%d %d ", p, q); void main() int a = 6, b = 5; m(a);
A.
6
B.
6 5
C.
6 junk value
D.
Compile time error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board