Computer Science, asked by emmayo382, 2 months ago

Consider the following four statements:
(a) i = 30; i++;
(b)for (i = 0; i<30; i++) { }
(c) a = i++;
(d) while (i++ = 30) cout << i;
Which statement gets affected when i++ is changed to ++i?

Answers

Answered by saaaaaaaaaaaaaaaddkh
0

Answer:

I don't know this answer

Answered by devesh1607
0

Answer:

d. while (I++=30) cout<<I;

Similar questions