MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} |
| A. | Hello World |
| B. | World |
| C. | WorldHello |
| D. | Hello |
| E. | None of these |
| Answer» B. World | |