/* * for.c */ int main(int argc, char *argv[]) { int x, y; int product; x = 10; y = 5; for(product = 0; y > 0; y--) { product = product + x; } }