o020 is an octal literal with the value 16 (8^1 * 2 + 8^0 * 0)
o0x20 is a hexadecimal literal with the value 32 (16^1 * 2 + 16^0 * 0)
oThe + operator performs arithmetic addition on the operands and returns the sum
•The printf function prints the value of i as a decimal integer using the %d format specifier.
•The output of the program is 68.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit