Daily Homework Finish below by end of Oct 15, 2011 =================================== 17.1) On Practice Test 3, do problems 8, 9, and 10, using the same original 3x3 table from Problem 7. 17.2) Then do: void changepixels(int** imgtemp) { int i,j; for (i=0;i int f(int *a, int b, int *c); int main (void) { int a=2, b=3, c=4, d=5, e=6; printf("a=%d b=%d c=%d d=%d e=%d\n", a, b, c, d, e); a = f(&b, f(&c, c-4, &d), &e); printf("a=%d b=%d c=%d d=%d e=%d\n", a, b, c, d, e); system ("pause"); return 0; } int f(int *a, int b, int *c){ b = *a + 1; *c = *a - 2; *a = b - *c; printf("In f(), a=%d b=%d c=%d\n", *a, b, *c); return *a - *c; } 16.2) Start doing Problem 7 on Practice Test 3. Finish below by end of Oct 9, 2011 ================================== 15.1) Continue Food Bank , as follows: if (choice==3) { if (req_count == 0) { message 1 : No hunger } else if (don_count == 0) { message 2 : Scrooges in this town } else { // request does not find a match in donations found = -99; for (i=0; ireq_amt[0]) { don_amt[found] -= req_amt[0]; //reduce the donation table's amount; //remove the request as above for (i=1;i as the first line, and to add the line system("pause"); just before the return statement. Make sure both programs run on your computer. When you run each one, it should produce output on the black screen. 1.3) After you have verified that you can run both programs in 1.2, erase each one, and try to write it yourself without looking at any notes. Get help from the notes to finish each program. Finally, keep repeating 1.3 until you are able to write each program by starting from an empty page and without any help from notes. 1.4) Read Lecture notes, Chapter 2, skipping the Brief Intro to Pointers.