MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program, if a short int is 2 bytes wide?_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ short int i = 0;_x000D_ for(i=-1; ++i; i>0)_x000D_ printf("%u,", i);_x000D_ return 0;_x000D_ } |
| A. | 1 ... 65535 |
| B. | Expression syntax error |
| C. | No output |
| D. | 0, 1, 2, 3, 4, 5 |
| Answer» B. Expression syntax error | |