Vidyalelo
C Programming · Q248

Pointer

Programming · C Programming · question 248

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
Answer

Answer: Option D

Solution

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