#include #include using namespace std; int main() { for (int i {5}; i < 100; i+=5 ) { cout << i << "\n"; } //i no longer exists at this point. cout << "here I come, ready or not!\n"; return EXIT_SUCCESS; }