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