[RESOLVED] [Need immediate help] How to start work with?
I used MS Visual Studio .Net 2003. I want to know how to start work on C++ source file. I'm confusing with that how to select the project type. I want to test the following simple code.
Code:
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
“victory breeds hatred, the defeated live in pain; happily the peaceful live giving up victory and defeat” - Gautama Buddha
Strange.. have you checked if the file is actually there? What is VS trying to do.. execute it before its even compiled? What are the folder permissions set to on your machine?
Try rebuilding it, and setting it was a release build. Then, try running the executable from Windows, instead of from the IDE.
If the file is missing, then try a complete rebuild (Build >> Rebuild All). Then see if the file is where its supposed to be (it will be in the Release folder).