What is the output of this C code?
void main() { m(); printf("%d", x); } int x; void m() { x = 4; }
Answer: B
No answer description available for this question.