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:

enter image description here enter image description here

What to do?

  • These are Intellisense messages. Have you ever started a compilation? And show your code. - VladD
  • And which type of project did you choose? - VladD
  • Console application. To start, press the button with the green arrow - a local debugger. - user5483163
  • Make sure that the path (instead of asterisks is a digit) is C:\Program Files (x86)\Windows Kits\10\Include\10.*.*\ucrt in your include path (look in the project settings). If so, then check that there is corecrt.h in this path. - Vladimir Gamalyan
  • As I understood, some kind of IncludePath is not registered, but how to register it? - user5483163

0