#include int main() { int i; for (i=0; i<2; ++i) { const int j = i; printf("%d\n", j); } return 0; }