What are these errors?

I am a very beginner at C++ and have been working by myself. I have been struggling several of times since there's no one around to help me learn the basics.
My question is, every time I try to compile, I get these errors:

 
http://www.gulfup.com/?DjBd5k][img]http://im43.gulfup.com/eBlOvz.png 


Thanks in advance,
Last edited on
Thats not an error thats a URL.(Uniform Resource Locator)
Last edited on
I know it's a URL... click on it and it will show you a screen shot of the error
the error comes down in the program and cannot copy it, that's why I had to screen shot it and upload it...
Clearly you have a missing ;
[Error]expected ';' before 'return'
Without seeing your code I wouldn't know where that was missing.
It means that you have not terminated(ended) the line before return statement. This means that you have not put a semicolon(;) at the end of the line before the return statement.
Topic archived. No new replies allowed.