Microsoft Visual Studio ~ C/C++ Runtime Library ~ Static/dynamic linking
问题 I am a Microsoft Visual Studio user. My question is about the "C/C++ Runtime Library". I created an "Empty Project" with a ".cpp" source file "main.cpp" containing the following code: #include <iostream> int main(void) { std::cout << "Hello World" << std::endl; return 0; } "iostream is a header file which is used for input/output in the C++ programming language. It is part of the C++ standard library." Is there a difference between "C/C++ Runtime Library" and "C/C++ Standard Library"? How do