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); }

3 hello
None of these
Compiler Error
Linking error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Helps to avoid repeated programming across programs.
All of these
Enhances the logical clarity of the program.
Helps to avoid repeating a set of statements many times.
Makes the debugging task easier.

ANSWER DOWNLOAD EXAMIANS APP