Line 7: Correct header is <cctype>
Line 8: Correct header is <cstdio>
Line 12: first name and last name are undefined. first name and last name need _ between the parts.
Line 13: What is header <pointer> ?
Line 18: The dimensions of name[][] are not defined.
Line 43,46: Function prototypes should be before main().
Line 49.52: You have two file pointers named in.
Line 55: You declared initialise() to require an int arguemnt, but you're not passing an argument.
Line 60: MaxCandidates is undefiined. #define at line 11 is singular.
Line 66,72: count is undefined.
Line 72: votes is undefined.
Line 75: validVotes is undefined. Misspelling at line 36?
Line 85: MaxNameLength is undefined. Did you mean MaximumNameLength ?
Line 101,103: big is undefined.
Line 107: getLargest() doesn't return anything.
Line 126: There is no conditional statement under the if.
Your compiler should have pointed out all these errors to you. Pay attention to the errors reported by the compiler. Sometimes it is best to fix the first error, recompile, then more on to the next error.
PLEASE ALWAYS USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post.
http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.