// crochet.c // // Written by YOUR-NAME (YOUR-ZID) // on TODAYS-DATE // // Determines whether a crochet project is complete. // If it is not complete, outputs how many rows are left until completion. #include // Constants #define DAYS_IN_WEEK 7 int main(int argc, char *argv[]) { // Scan the number of rows completed each day into the array. int week[DAYS_IN_WEEK]; // Scan in the total number of rows needed to complete the project // Calculate the sum of all values in the array // Print the number of rows that still need to be completed, // or that the project is finished return 0; }