From Terry Harvey's 105 class void p(int a, int b){ int i,j; for(i=0; i=; i--){ for(j=0; j int a(int n); int b(int height, int weight); int f(int k); int c; int main(int x){ int i = 1; c = 5; printf("%d\n", a(i)); printf("%d\n", f(i)); printf("%d\n", b(i, c)); printf("%d\n", f(i)); c = 6; printf("%d\n", a(i)); printf("%d\n", b(i, 2)); printf("%d\n", f(i)); return 0; } int a(int i){ int c = 3; i += c; return i; } int b(int j, int c){ return j + c; } int f(int k){ return 5 + c; } /////////////////// Above all, practice writing programs and program segments on paper. Your book has lots of sample questions that are good practice. Labs, homeworks, and your lecture notes are excellent sources of test questions. Make graphics with either single or nested loops, like *** *** *** * ** *** *** ** * * ** *** *** ** * * * * * * * rand()