Created Hello World in the newly installed Microsoft VS 2015. When trying to compile HelloWorld, it gives an error.
Code:
#include <iostream> using namespace std; int main(void) { cout << "HelloWorld"; return 0; } Mistake:
What to do?
Created Hello World in the newly installed Microsoft VS 2015. When trying to compile HelloWorld, it gives an error.
Code:
#include <iostream> using namespace std; int main(void) { cout << "HelloWorld"; return 0; } Mistake:
What to do?
Source: https://ru.stackoverflow.com/questions/538666/
All Articles
C:\Program Files (x86)\Windows Kits\10\Include\10.*.*\ucrtin yourinclude path(look in the project settings). If so, then check that there iscorecrt.hin this path. - Vladimir Gamalyan