MCQOPTIONS
Saved Bookmarks
| 1. |
#include <stdio.h>#define TRUE 1 int main( ) { printf( ""Value of TRUE : %d"", TRUE); return 0;}6.Which option should be selected to work the following C expression? |
| A. | typedef char [] string; |
| B. | typedef char [] string; and typedef char *string; |
| C. | typedef char *string; |
| D. | Such expression cannot be generated in C |
| Answer» D. Such expression cannot be generated in C | |