SOLVED: I didnt put the .cpp file in the source folder of the project
Time and again, and I really want to learn how to code.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// my first programm in C++
#include <iostream>
using namespace std;
int main ()
{
cout <<"hello World, starting some simple programming"; //this displays the string on the console screen
return 0;
}
/* this C++ programm was made to
intoduce myself with the basics of C++ programming.
It is not a professional programm and was made using C++ compiler
express edition 2007 (C) Microsoft Corp */
| |
and I get this error: This project iis out of date.
and when I click yes to let it ignore the fact that it's outdated i get this error message.
1>------ Build started: Project: first project tut1, Configuration: Debug Win32 ------
1>Embedding manifest...
1>mt.exe : general error c10100b1: Failed to load file "..\Debug\first project tut1.exe". Het systeem kan het opgegeven pad niet vinden.
1>Build log was saved at "file://c:\Users\M-562\Documents\Visual Studio 2008\Projects\first project tut1\first project tut1\Debug\BuildLog.htm"
1>first project tut1 - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========