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