cl
The Microsoft C/C++ compiler for compiling and linking source code files. More information: https://learn.microsoft.com/cpp/build/reference/compiler-command-line-syntax.
cl {{path/to/source.c}}
cl /Fe {{path/to/output_executable}} {{path/to/source.c}}
cl /O2 {{path/to/source.c}}
cl /Zi {{path/to/source.c}}
cl {{path/to/source1.c path/to/source2.c ...}}
cl /Fo {{path/to/output_directory}}/ {{path/to/source.c}}
cl /WX {{path/to/source.c}}