✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
26. How many times will this loop execute?
#include <iostream>
using namespace std;
int main() {
int count = 0;
for (int i = 0; i < 10; i++) {
i += 2;
count++;
}
cout << count << endl;
return 0;
}