- A a = 4, c = 8
- B a = 3, c = 8
- C b = 3, c = 6
- D a = 4, c = 6
C Programming Language MCQ Operators and Enums in C Language
⚠ Report ✓ Question Verified Copy Link
#include void main() { int a, b = 2, c; a = 2 * (b++); c = 2 * (++b); printf("a=%d, c=%d",a,c); }
Learn More MCQ Questions from C Programming Language MCQ Operators and Enums in C Language