Error C2143

error C2143: syntax error : missing ';' before '<<'

I am getting this error on my project, checked for missing semi-colons, dont see it. It appears to refernce the line after the error has accured. What is a good way to figure this error out? What should I be lookin for????
A missing semicolon. Before the '<<' it's showing you.
I have it there, but still no go
Post the line and the area around it then.
cout << "Choose 1 = Dinner";
cout << endl; << "Choose 3 = Breakfast";
You don't want the ';' after the endl.
Wow!!! So it it can be that it is missing or that it is not needed.......either or! I was thinking something was missing.......Thanks
Topic archived. No new replies allowed.