MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following program?void main(){char str1[] = "abcd";char str2[] = "abcd";if(str1==str2)printf("Equal");elseprintf("Unequal");} |
| A. | qual |
| B. | nequal |
| C. | rror |
| D. | one of these. |
| Answer» C. rror | |