- Установлена VisualStudio
- Войти в папку C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts
- Запустить «VS2013 x64 Native Tools Command Prompt«
- Написать программу
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world, from Visual C++!" << endl;
}
5. Запустить компиляцию
c:\hello>cl /EHsc hello.cpp
Microsoft (R) C/C++ Optimizing Compiler Version 19.10.25017 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
hello.cpp
Microsoft (R) Incremental Linker Version 14.10.25017.0
Copyright (C) Microsoft Corporation. All rights reserved.
/out:hello.exe
hello.obj