Question 9
Shree is writing a program to calculate the product of the first 10 multiples of 4. He has written a code, but one statement is missing.
int i = 4;int product = 1;while(i <= 40){ product = product * i; ---- missing statement ----}printf("%d",product);i = i * 4
i = i + 1
i = i + 4
i = 4