What will be the final value of c in the following C code snippet? (Initial values: a = 1, b = 2, c = 1)
c += (-c) ? a : b;
c += (-c) ? a : b;What will be the final value of c in the following C code snippet? (Initial values: a = 1, b = 2, c = 1)
c += (-c) ? a : b; Correct Answer c = 2
মোঃ আরিফুল ইসলাম
Feb 20, 2025