Question: 1. Consider the code below. What will be the value of i, j and k after each step? int i{ 5 }, j{ 6 },
1. Consider the code below. What will be the value of i, j and k after each step? int i{ 5 }, j{ 6 }, k{}; ++i + j; i++ + j; k += --j; k++; k /= ++j; k = i > j ? i : j; %3! %3D
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
