C - Structure and Union Questions and Answers
Practice ModeShowing 10 of 51 questions
Q51
What is the size of ptr1 and ptr2?
struct x
{
int j;
charr k [100];
unsigned i;
};
int *ptr1:
struct x *ptr2;
Answer: Option A