- A 6 -6 0 0
- B 6 -5 0 1
- C -6 -6 0 1
- D 6 -6 0 1
C Programming Language MCQ Operators and Enums in C Language
⚠ Report ✓ Question Verified Copy Link
void main()
{
int a = 5, b = -7, c = 0, d;
d = ++a && ++b || ++c;
printf("\n%d%d%d%d", a, b, c, d);
}
Learn More MCQ Questions from C Programming Language MCQ Operators and Enums in C Language