My IDE is Visual Studio 2017. I am pretty new in C++ programming so I need a help about understanding principles of creating a new C++ project in Visual Studio. So, in my first solo attempt i just chose a empty project option and afther that i chose to add new item and i write this sample code:
#include <iostream>
using namespace std;
int main()
{
return 0;
}
Afther this step and afther steps with compiling, building and a starting without debugging i did not get any message or consol window with time of code execution or option for entering any key for ending. What is needed for getting this kind of information at the end of code?