#include int main() { long i; for (i=2; i>0; i= i+1){ printf("%ld\n",i); if (i > 1000) { i = -10;} } printf("\n\n i= %ld\n",i); return 0; }