Reputation: 21855
I just wanted to know what is inside the Visual C ++ runtime DLLs? What code? Which functions? Just curious about that.
Thanks in advance.
Upvotes: 1
Views: 815
Reputation: 7506
It contains standard functions, like printf
, exit
etc.
You can find the source code for the library in C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\crt\src
(This is Visual Studio 2008).
The basic DLL for Visual Studio 2008 is msvcrt90.dll
.
See also this link.
Upvotes: 3
Reputation: 8849
The runtime contains code, that is common to/needed in all C++ programs ('think default libraries') and generaly links your code to the OS and it's API.
Code to initialise the app, set up I/O, minimal error reporting/logging, memory management etc ..
Upvotes: 1