MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program ? #include<stdio.h> int main() { char str1[] = "Hello"; char str2[] = "Hello"; if(str1 == str2) printf("Equal n"); else printf("Unequal n"); return 0; } |
| A. | Equal |
| B. | Unequal |
| C. | Error |
| D. | None of above |
| Answer» C. Error | |