MCQOPTIONS
Saved Bookmarks
| 1. |
Find the output of the following program. void main() { int i=065, j=65; printf("%d %d", i, j); } |
| A. | 53 65 |
| B. | 65 65 |
| C. | 065 65 |
| D. | 053 65 |
| Answer» B. 65 65 | |