-->

What will be the size of the following structure?

#include <stdio.h>

struct temp

{

     int a[10];

     char p;

};


a. 5

b. 11

c. 41

d. 44











ANSWER: 44