C Programming
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); }
50, 13, 24, 50
13, 10, 24, 50
50, 13, 24, 13
50, 13, 11, 13
13, 13, 24, 13
ANSWER
DOWNLOAD EXAMIANS APP
↑