If a C function doesn't accept any arguments then you have to say so by writing an empty list of arguments after the function name. In our case, the main function doesn't take any arguments, so we have to write this:
int main()
In a few lessons we'll talk more about functions in C. For now just follow the outline and write ``int main()'' in your C programs.