MCQOPTIONS
Saved Bookmarks
| 1. |
Which option should be selected to work the following C expression?string s = "WELCOME"; |
| A. | Such expression cannot be generated in C |
| B. | typedef char [] string; |
| C. | typedef char *string; |
| D. | typedef char [] string; and typedef char *string; |
| E. | None of these |
| Answer» D. typedef char [] string; and typedef char *string; | |