What will be the output of the following C code?
#include
typedef struct p
{
int x, y;
};
int main()
{
p k1 = {1, 2};
printf("%d\n", k1.x);
}
Answer: A
No answer description available for this question.