1. What is the output of this C code? #include <stdio.h> struct point { int x; int y; }; int main() { struct point p = {1}; struct point p1 = {1}; if(p == p1) printf(”equaln”); else printf(”not equaln”); } a) Compile time error b) equal c) depends on the standard d) not equal AnswerAnswer:…