MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program ? #include<stdio.h> int main() { char t; char *p1 = "India", *p2; p2=p1; p1 = "BIX"; printf("%s %s n", p1, p2); return 0; } |
| A. | India BIX |
| B. | BIX India |
| C. | India India |
| D. | BIX BIX |
| Answer» C. India India | |