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. | hello |
| B. | ompiler Error |
| C. | inking error |
| D. | one of these |
| Answer» C. inking error | |