answersLogoWhite

0

A runtime library is a dynamic link library (DLL) which provides common runtime services and functions required by a C++ program. By storing common functionality in a DLL, you reduce the need for duplicate code within your program, thus reducing its size, and the DLL can be shared amongst many programs, thus reducing the overall memory footprint.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

How do you fix maplestory visual C plus plus run time library?

Re-installing Maplestory in repair mode should fix the problem. If not, uninstall, clean the registry and hard-drive, then re-install.


How do you make two loops run at the same time in c plus plus?

With two threads.


What standard library you use in programming to read and write files?

You use fstream.Another answer: the standard C-run time library (also know as libc or C-rtl)


What is the code to include a library in c plus plus?

#include <libraryname>


How do you get the c plus plus standard library on your compiler?

platform-dependent


How do you enter a sentence as input in c plus plus?

Use the C++ getline() function from the standard library.


What is rand function in c plus plus?

The rand() function returns an integer (int) value that represents a pseudo-random number between 0 and RAND_MAX, RAND_MAX being a constant declared in the run-time library. Each time rand() is invoked, a different value is returned.


What are the types of sorting in c?

Any type you want to write. C does not provide sorting routines natively; you have to either use a library routine or write something. Some library implementations are based on quicksort or heapsort but, again, that is not a C (or C++) thing - it is a run-time library thing.


What is the operator of power in c plus plus?

There is no "power" operator in C or C++. You need to the use the math library function pow().


How do you run c or c plus plus in windows 7?

You should install a C or C++ compiler first.


What has the author Mark Nelson written?

Mark Nelson has written: 'C++ programmer's guide to the standard template library' -- subject(s): C++ (Computer program language), Standard template library, C. 'C [plus plus] programmer's guide to the Standard Template Library' -- subject(s): C.


What is debugging in c plus plus?

Debugging is a way of running the program to locate any errors that may arise at run-time.