\Debug\Hour 05.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified.
Just downloaded and installed it a few minutes ago, and tried a bit of code I'm working on with a new project of mine and new C++ file and I received the above "error" code. Any idea?
#include <iostream>
#include <time.h>
usingnamespace std;
void sparta()
{
cout<<"You come into MY city, ";
Sleep(2000);
cout<<"THREATEN my people with SLAVERY and DEATH...\n";
Sleep(4000);
cout<<"Oh I have chosen my words carefully, Persian.\n\n\n";
Sleep(5000);
cout<<"This is blasphemy! This is madness!\n\n\n";
Sleep(2000);
cout<<"Madness...\n\n\n\n\t\t\t";
Sleep(8000);
cout<<"THIS\n\t\t\t";
Sleep(1000);
cout<<"IS\n\t\t\t";
Sleep(1000);
}
int main()
{
sparta(); // I'm still working on the project
cin.get();
}
You could try checking the directories it is looking in in the project settings...although I have never gotten that error so I couldn't really help much...
You could also try a google search for it to see if you can find any information on it.
That's what I thought it'd be, Grey. However I got on it this morning and it required me to associate the file types (C++ file, C file, etc.) with the compiler so I guess it de-associated itself.