MCQOPTIONS
Saved Bookmarks
| 1. |
_ Determine Output:void main(){ struct xx { int x=3; char name[] = "hello"; }; struct xx *s = malloc(sizeof(struct xx)); printf("%d", s->x); printf("%s", s->name); }$? |
| A. | 3 hello |
| B. | Compiler Error |
| C. | Linking error |
| D. | None of these |
| Answer» C. Linking error | |