Line 53, remove the semi-colon from the end of that line. Remove lines 61 and 62. Line 94, put a space before the % in the scanf-- scanf(" %c", &entered_char);
Line 96, you need to surround both logical arguments in your if statement, with parentheseis:
if((argument1) || (argument2))
Line 102, delete the word char in that line. The variable is already declared in your program, you can't /shouldn't re-declare it.
You should be re-compiling your program frequently, to catch any syntax errors before they cause zillions of other errors during compilation.