MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program ? #include<stdio.h> #include<string.h> int main() { char str[] = "India 0 BIX 0"; printf("%d n", strlen(str)); return 0; } |
| A. | 10 |
| B. | 6 |
| C. | 5 |
| D. | 11 |
| Answer» D. 11 | |