CODE
#include <stdio.h>
int main() {
long long int product = 1;
for(int i = 10; i <= 30; i = i + 1) {
if(i%2 == 0) {
product = product * i;
}
}
printf("%lld",product);
return 0;
}
DISPLAY
111588212736000
EXPLANATION
Declare the variable product as a long long integer type to hold 8 bytes.
Use a for loop which initializes at 10 and maximizes at 30, and increases a point each time.
Use an if statement to check for even numbers by checking the remainder.
Display the product.