Vidyalelo
C Programming · Q62

Function

Programming · C Programming · question 62

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
Answer

Answer: Option D

Solution

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