Suppose that i and j are both of type int. What is the value of j after the following statement is executed? for (i 0, j = 0; i < 10; i++) j += i;
Answers
Answered by
1
Answer:
Suppose that i and j are both of type int. What is the value of j after the following statement is executed? for (i 0, j = 0; i < 10; i++) j += i;
10
Similar questions