function call missing argument list
A function call must include the open and close parentheses after the function name even if the function takes no parameters.
Example
void function1(){ } main() { function1; return 0; }