The output of the code below is #include int *m() { int *p = 5; return p; } void main() { int *k = m(); printf("%d", k); }

Correct Answer: 5

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion