InterviewSolution
Saved Bookmarks
| 1. |
A hexadecimal literal begins with __________(a) 00(b) 0x(c) 0X(d) Both 0x and 0X |
|
Answer» Correct choice is (d) Both 0x and 0X To elaborate: Generally, X or x denotes hexadecimal values. So, any integer literal that begins with 0X or 0x denotes a hexadecimal number. |
|