MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following code?void main (){char far * farther, * farthest;printf(“%d..%d”, sizeof(farther), sizeof(farthest));} |
| A. | 2..2 |
| B. | 4..4 |
| C. | 4..2 |
| D. | 7..8 |
| Answer» D. 7..8 | |