MCQs>IT & Programming>C#>What will be the values of i, j and k after executing the following set of statements? int i, j, k; i = 4; j = 30; k = 0; k = j++ / i++;
C# MCQs
What will be the values of i, j and k after executing the following set of statements?
int i, j, k;
i = 4;
j = 30;
k = 0;
k = j++ / i++;
Answer
Correct Answer:
Explanation:
Note: This Question is unanswered, help us to find answer for this one