answersLogoWhite

0

What is library file in C language?

Updated: 8/16/2019
User Avatar

Wiki User

15y ago

Best Answer

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

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is library file in C language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you add record in middle of the file in c language?

The standard C library-functions do not support record-oriented file-access.Neither do the common operating systems like Windows and Unix.So basically the answer is no.


Which library file contain the definition of stdioh and conioh header file function definition in C language?

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


Cos.obj error in c language?

cos.odj is a file that can not be open while running the program . this is also due to directories or library functions


What is the difference between using angular brackets in C language and double quotes in Cpp language to enclose header files?

When you includes any header file using "" that time compiler try to locate this file first from your program's local directory and then from library. But if you include the .h file using <> then compiler assumes you are including some library file.


What are the library function in c language?

libray in c++


What is new cpp headers?

Not sure what you mean by "new" headers. You probably mean the C++ standard library headers, however these headers have been in existence since before 1998 when the language first became standardised. Prior to that, C++ used the C standard library headers, all of which have a .h extension. The C++ standard library headers have no file extension.


How do you draw Logic Gates in C language?

The C language is not a graphics language and you cannot draw logic gates using it. C is a programming language, and it is possible to use a graphics library to do so, but you did not specify which library you were using. Please restate the question.


What is Compilation Process?

In simple words, it is the conversion of a high level language to an assembly level language. In C, it is the conversion of a .c file to a .s file


Is combination a library function in c language of programming?

No.


How is a library file incorporated in a C program?

Every library requires a header file (.h file) that can be included in any translation unit that requires access to the library. The header describes the library interface. The library implementation may be provided by a corresponding .c source file in which case you can compile the library into your program just as you would any other translation unit. However, most library implementations are provided by a precompiled library file (.lib file) and you generally won't have access to the source file. The precompiled library file is required by the linker while the corresponding header is required by the compiler.


How is possible to addition of two number without including header file in C language?

You do not need a header file to add two numbers in C. You do need the header files if you want to use the run-time library, which includes the ability to format and display the result.


Does c language support network programming?

The C language supports whatever functionality is provided by the applicable library, by the programmer, and by the input/output capabilities of the platform. Since a network programming library is available to the c compiler, then yes, the c language supports network programming.