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