C | Variable Declaration and Scope | Question 7
int main() { int x = 032; printf ( "%d" , x); return 0; } |
(A) 32
(B) 0
(C) 26
(D) 50
Answer: (C)
Explanation: When a constant value starts with 0, it is considered as octal number. Therefore the value of x is 3*8 + 2 = 26
Quiz of this Question