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

Compiler Error
Linking error
None of these
3 hello

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

All of these
Function is a block of code that performs a specific task. It has a name and it is reusable.
Function is the fundamental modular unit. A function is usually designed to perform a specific task.
Function is a block of statements that perform some specific task.

ANSWER DOWNLOAD EXAMIANS APP