#include main(){ int a; int b; /* In parens, expressions are separated by semicolons. */ /* First expresson are the initial conditions */ /* The second is an evaluation of whether to continue to looping */ /* The last expression contains the changes inacted should the loop continue */ /* More than one change can be inacted in each expression...*/ for (a=0, b=1000; a<100, b>930; a++, b--){ printf("%d , %d\n", a, b); } return 0; }