MCQOPTIONS
Saved Bookmarks
| 1. |
If the size of an integer is 4 bytes, What will be the output of the program ? #include #include int main() { printf(“%dn”, strlen(“123456”)); return 0; } |
| A. | 6 |
| B. | 12 |
| C. | 7 |
| D. | 2 |
| Answer» B. 12 | |