link
compilers/cl-compile

Microsoft C++ Compiler

Compile with Microsoft Visual C++

cpp
windows
msvc

Command

cl

Explanation

cl.exe is the Microsoft Visual C++ compiler for Windows development.

Examples

Compile C++ program

cl hello.cpp

Compile with exception handling and optimization

cl /EHsc /O2 program.cpp

Compile with debug information

cl /Zi /Od program.cpp