I noticed these pieces of content:
Microsoft documentation: Microsoft Visual C++ Redistributable latest supported downloads, C runtime (CRT) and C++ standard library (STL)
.lib
filesstackoverflow: What is the C runtime library?
It is mentioned here that runtime libraries should not be confused with libraries created by programmers or provided by third parties, nor with dynamic libraries.
In Microsoft's documentation, it says that MSVC Redistributable is a runtime library, and it also says that crt contains functions and global variables exported from the standard C99 CRT library (This is not part of the runtime library definition, is it?).
But I found very many articles that say MSVC Redistributable is a set of dynamic library files.
May I ask what exactly is MSVC Redistributable?