i int main() {
2 int i = 20;
3
int count = 0;
4
for (; i++ < 100;) {
5
count++;
6 }
7 cout << i << "," << count;
8 return;
9 )
Answers
Answered by
0
Answer:
Output will be 80 and 101
Attachments:
Similar questions