MCQOPTIONS
Saved Bookmarks
| 1. |
What is the result of compiling and running this code?main(){char string[] = "Hello World";display(string);}void display(char *string){printf("%s", string);} |
| A. | ill print Hello World |
| B. | ompilation Error |
| C. | ill print garbage value |
| D. | one of these. |
| Answer» C. ill print garbage value | |