MCQOPTIONS
Saved Bookmarks
| 1. |
Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} |
| A. | will print Hello World |
| B. | Compiler Error |
| C. | Can't Say |
| D. | None of These |
| Answer» C. Can't Say | |