MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the code given below?#include int main( ){char name [ ]=”satellites”;int len;int size;len = strlen(name);size = sizeof(name);printf(“%d”, len * size);return 0;} |
| A. | 100 |
| B. | 110 |
| C. | 40 |
| D. | 44 |
| Answer» C. 40 | |