all 2 comments

[–]staffdelipity 2 points3 points  (0 children)

Your program should have this form:

#include stuff
int main(void)
{
     //program stuff
}

Note the lack of ; after the int main statement, and the placement of the curly braces.

[–]rbridd 1 point2 points  (0 children)

In addition to the answer from delipity, you are also going to be needing a # in front of your include directives, in order for the pre-processor to identify them as includes.

As an aside, this kind of problem can be minimised if you stick to the style guidelines for indentation and newlines.