int main() {
int i = 20;
into count=0;
int count = 0;
for (; i++ < 100;) {
count++;
}
cout << i << "," << count;
return 0;
}
Answers
Answered by
3
Answer:
hey guys lets search w3schools and get tutorial for c++ there you find the text editor just type this text in it and see the result
Similar questions