#include using namespace std; int main() { int i; for ( i=0; i<10; i++ ) { cout << "howdy! " << i << endl; } cout << "outside the loop, i=" << i << endl; for ( ; i>5; i-- ) { cout << "doody! " << i << endl; } }