Microsoft Visual Studio ~ C/C++ Runtime Library ~ Static/dynamic linking

The term “C/C++ Runtime Library” doesn’t mean anything, it is roughly the name of a project setting in the IDE. Project + Properties, C/C++, Code Generation, Runtime Library setting. There you can choose between /MD and /MT. With /MD, the default setting, your program will be using the DLL version of the runtime libraries. On … Read more