C Programming Language MCQ Structure in C Language
⚠ Report ✓ Question Verified Copy Link
#include struct point { int x; int y; }; int main() { struct point p = {1}; struct point p1 = {1}; if(p == p1) printf("equal\n"); else printf("not equal\n"); }
Learn More MCQ Questions from C Programming Language MCQ Structure in C Language