- A 10 (Garbage Value)
- B 0 10
- C 10 0
- D (Garbage Value) 10
C Programming Language MCQ Structure in C Language
⚠ Report ✓ Question Verified Copy Link
#include struct temp { int a; } s; void func(struct temp s) { s.a = 10; printf("%d\t", s.a); } main() { func(s); printf("%d\t", s.a); }
Learn More MCQ Questions from C Programming Language MCQ Structure in C Language