MCQ Practice
What is the output of this program? #include #include struct st{ int a; char b; }; int main() { struct st *st_ptr; st_ptr = malloc(sizeof(struct st)); printf("%dn",sizeof(struct st)); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A