Q62
What will be the output of the following C code? #include int *m(); void main() int k = m(); printf("%d", k); int *m() int a[2] = 5, 8; return a;
A.
5
B.
8
C.
Nothing
D.
Varies
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board