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