void test37() { int x=10;int y =10,i; for(i=0;x>8;y=i++) { printf("%d,%d\n",x--,y); } }
void test38() { int x=10;int y =10,i; for(i=0;x>8;) { y=i++; printf("%d,%d\n",x--,y); }
}