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