#include #include using namespace std; int main() { int i; //unpredictable garbage for (i = 0; i < 10; ++i) { //++i means i = i + 1 cout << i << "\n"; } //i still exists at this point, but there is no need for it to do so. return EXIT_SUCCESS; }