Name: Anonymous 2011-02-22 15:26
So, I'm trying to start up my first C++ program on my long road to learning the language:
----------------------------------------
#include <iostream>
int main()
{
using namespace std;
cout << "All I want is this shit to fucking WORK"; endl;
cout << "Please?";
return 0;
}
------------------------------------------------
I keep getting this linking error; here's the output I copypasta'd from the output. (BTW, I use Visual Studio 2008)
---------------------------------------------
1>Embedding manifest...
1>.\Debug\MyFirst.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified.
1>Build log was saved at "file://e:\Worskhop MASTER FOLDER\Videogame Workshop\C++ Workshop\MyFirst\MyFirst\Debug\BuildLog.htm"
1>MyFirst - 1 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
----------------------------------------
#include <iostream>
int main()
{
using namespace std;
cout << "All I want is this shit to fucking WORK"; endl;
cout << "Please?";
return 0;
}
------------------------------------------------
I keep getting this linking error; here's the output I copypasta'd from the output. (BTW, I use Visual Studio 2008)
---------------------------------------------
1>Embedding manifest...
1>.\Debug\MyFirst.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified.
1>Build log was saved at "file://e:\Worskhop MASTER FOLDER\Videogame Workshop\C++ Workshop\MyFirst\MyFirst\Debug\BuildLog.htm"
1>MyFirst - 1 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========