This is the code i’m trying to run:
#include <iosteam>
//# pre-precessor directive
int main(void)
{
return 0;
}
I previously had the error:
fatal error C1083: Cannot open include file: 'iostream': No such file or directory
Then I searched the stackoverflow forums and did repair, reinstall, and finaly disabled all the “inherit from parent or project defaults” options in Property Manager -> Microsoft.Cpp.Win32.user -> properties -> VC++ Directories. Error message changed to TRK0005, but I still can’t build this simple code.
Now the latest error/output is:
1>------ Build started: Project: BullCowGame, Configuration: Debug Win32 ------
1>TRACKER : error TRK0005: Failed to locate: "CL.exe". The system cannot find the file specified.
1>
1>
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
The error still persist after reinstalling the visual studio. I’m also adding the final screenshot of the VC++ directories:
Operation Systems: Windows 10
using Visual Studio 4.6

