MCQOPTIONS
What will be the output of the following C code..
What will be the output of the following C code?
#include typedef struct p { int x, y; }k = {1, 2}; int main() { p k1 = k; printf("%d n", k1.x); }