I used below code in my printf statement.
void main() { int n=0102; printf(\"%d\", n); }
This prints 66 as the answer. I also chang
You tell printf to print the value in decimal (%d). Use %o to print it in octal.