Home » Technical Questions » Programming

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!