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