Question: The equality operator is represented by = O = O EQ = What will be output of the following program? #include int main() {


The equality operator is represented by = O = O EQ = What will be output of the following program? #include int main() { int i=-3, j-2, k=0, m; m = ++i && ++j && ++k; printf("%d, %d, %d, %d ", i, j, k, m); getchar(); return 0; } O-2, 3, 1, 1 3, 2, 1.2 O-2, 1, 3, 1 O2, 3, 2, 1
Step by Step Solution
3.32 Rating (152 Votes )
There are 3 Steps involved in it
Answer Answer 1 A The equality operator represented by The equality operator is use to checks wheth... View full answer
Get step-by-step solutions from verified subject matter experts
