/* divZero.c */ #include int main() { int x, y; y = 123; for( x = 10 ; x >= 0 ; x-- ) y = y/x; printf( "y:%d\n", y ); return 0; }