2009-11-25, 08:34 PM
You have to declare a function before you use it, so for DS's code to work, you'd have to either move the matchscore function above main, or declare its function prototype ("int matchscore(char[], char[])") above main.

