

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program ?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int i;_x000D_ char a[] = "\0";_x000D_ if(printf("%s", a))_x000D_ printf("The string is empty\n");_x000D_ else_x000D_ printf("The string is not empty\n");_x000D_ return 0;_x000D_ } |
A. | The string is empty |
B. | The string is not empty |
C. | No output |
D. | 0 |
Answer» C. No output | |