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