/*------------------------------------------------------------------------------ * File: for.c * Function: Calculate the product of two even numbers * Description: This C program calculates the product of two even numbers and outputs the results in the form "2 times 8 is 16" * Input: None * Output: "2 times 8 is 16" * Author(s): Noah Woodlee * Date: Aug 20, 2021 *----------------------------------------------------------------------------*/ #include #include int main(){ int i, p=0; int second = 6; int first = 4; for(i=0;i