

MCQOPTIONS
Saved Bookmarks
1. |
Consider the declaration static char hello[ ] = " hello " ; The output of printf( " % s \ n ", hello) ; will be the same as that of |
A. | puts(" hello "); |
B. | puts( hello ); |
C. | printf(" %s \ n", " hello ") ; |
D. | puts( " hello \ n ") ; |
Answer» D. puts( " hello \ n ") ; | |