Look at the reviews from the first two exams.
1, 2

Look at the videos.

I recommend you practice the sample final handed out, a sample questions found here.

Here are more sample questions.

Define the following:
A constant named tax, with the value of 8.25
A variable named person with the value of "Larry"
A variable named age with the value of 21
A variable p that is a pointer to the variable age.
A variable called bill that can contain the amount of a bill (such as 10.75)
An array called scores, that can hold 10 scores (where a score is a whole number, such as 100).

Write a prototype and function for the following:
A function called addthem gets two intergers and will return the sum of the two integers.
A function called stringdisplay, takes an array of characters and then displays them on the screen (you can use gets to do this), it returns nothing.
A function called yankees has no parameters, and does not return anything. All it does is display the phrase "Go Yankees!" on the screen.

Base number conversion:
What is 2C (base 16) in base 2

What is 10100110 (base 2) in base 10

What is 25 (base 10) in base 2

What is 5A (base 16) in base 10

What is 34 (base 10) in base 16

What is 0110 + 1010 (base 2) in base 2