Ignacio Soler Garcia
Ignacio Soler Garcia

Reputation: 21855

What is the Visual C runtime?

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

Answers (2)

Arve
Arve

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

lexu
lexu

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

Related Questions