Assume that size of an integer is 32 bit. What is the output of following program?
#include
struct st
{
int x;
static int y;
};
int main()
{
printf("%d", sizeof(struct st));
return 0;
}
Answer: C
No answer description available for this question.