c++ - Visual Studio 2015 "Hello World" Multiple Errors -
i'm using visual studio 2015 update 1 , 448 errors on simple console application. how can fix these errors. had not problem before (visual studio 2013 working properly.)
#include "stdafx.h" #include <iostream> using namespace std; int main() { cout << "hello world"; return 0; }
my problem solved reinstalling visual studio update 1 i thank user: ulrich-eckhardt
Comments
Post a Comment