I downloaded the latest version of Eclipse CDT (Helios) and wanted to try my luck with some C ++ programming (did not do this at the age).
I tried to execute the "Hello World" project, but I got stuck pretty quickly. First: #include <stdio.h>and #include <stdlib.h>marked with the warning "Unresolved Symbol". So I found a place where I can add include paths, and pointed it to these headers from the Visual Studio installation that I have.
After that, he looked great, but:
- I do not see compilation errors / warnings on the Problems tab .
- I can't run the code - I get "Launch failed". Binary Error Not Found
My question is simple - what are the steps I actually take to make my code compiled, linked, and executed? I tried to find it on the Eclipse website, but did not find a link to it.
source
share