/* En C */ /* Definition au loin */ #include int main(void) { int i; int n = 10; for(i = 0; i< n; i++) { printf("i=%d\n",i); } return 0; }