answersLogoWhite

0

Platform dependent, possibly LIBC.LIB or something like that.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Definition of Library of Congress and function?

it is a congress of library.......by Reynald Hummerstone


What are the library function in c language?

libray in c++


Is combination a library function in c language of programming?

No.


What are the function of header files?

They declare library functions They contain macro definitions They contain type definitions


This a prewritten function that is built into a programming language?

Library Function Starting out with Programming Logic and Design by Tony Gaddis Page 218


Is header file the library file?

No. Header files are those which contains declaration part of function & library files are those which contains definition part of function. These are those functions which we called in our program by using header files.


What is library file in C language?

It is a collection of various fuction in which we can define many function in Libaray file .


Can I have 5 function school library?

What are the function of a school library


How you can add a user define function in c library?

user defined functions r d functions whch user declare before the main functn in c program... for eg. double min( doub;le x,double y); int factorial( ,) int square(int) etc


What is the alternate function for clrscr function in c language?

What do you mean by \'alternate function of clrscr\'? A function that undoes clrscr? Or one that fills the screen with random characters? Anyway, clrscr is not part of the standard C library, it is DOS-specific.


How many functions are there in c?

The language itself has no functions at all. All functions are either provided by a library or are user-defined. The C89 standard library has fewer than 200 functions but C99 has a few more. Although the standard library is considered part of the language, the library and the language are physically separate. However, the language does have built-in operators like sizeof() that are function-like. But unlike actual functions which are evaluated at runtime, these operators are evaluated at compile time.


How do you call an external function or program that is written in different programming language?

It doesn't matter what language the external program or function was written in since all executables must be converted to machine code. To execute an external function, that function must reside in a library to which your program is linked and you must know the prototype of the function you intend to call. This is usually found in the library header file which can simply be included in your program. You can then call the external function just as you would an internal function. To execute a specific function in another program, however, you must use the command line interface for that program.