What is the output of this C code?
int main() { int var = 010; printf("%d", var); }
Answer: B
010 is octal representation of 8.