answersLogoWhite

0


Best Answer

education suportive, enhances good comm btwn users refreshing site

In computing terms, the term library also refers to an archive of functions, typically archived in binary (pre-compiled) form. This allows for easy re-use of previously defined, implemented and tested functionality, with possible protection of intellectual property when using a binary library.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

The C standard library is a now-standardized collection of header files and library routines used to implement common operations, such as input/output and string handling, in the C Programming language.

All the C library functions are declared in the different header files.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

There's more than one library functions in C, you can read about them in the help/manual. Some of them are printf, fgets, malloc.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

printf, fgets, fopen, strlen, strcpy... and a few thousands other.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the library function in c explain that?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Is combination a library function in c language of programming?

No.


Explain you how you can impliment programme in c language without main function?

You can't. If you have no main function, then there is no entry point to your code and it cannot be executed. Code without a main function is essentially a library. In MS Windows, GUI mode, you don't have to have main function. (WinMain is used instead).


What is standard library function in c?

The Standard Librarary Function in C is printf,scanf inf Standard input output header.. which is stdio.h.


Which function is used to read data from the console?

The scanf() function in the <stdio.h> C standard library header.


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

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

Related questions

What are the library function in c language?

libray in c++


Is combination a library function in c language of programming?

No.


What is date function in c?

There is no 'date' in the standard C library. You might have thought of 'time'.


How can you call a function written in FORTRAN from a C program?

Is the FORTRAN function part of a library. If it is it will be no different from call a c function in a library. There could be an issue the order that the functions attribures are pusshed onto the stack like there is with pascal.


Is the time you take to go to the library a function of the distance to the library please explain?

yes because its the range value of the domain


Which type of function in c?

Try to be more precise; explain what you mean by the type of a function.


Explain you how you can impliment programme in c language without main function?

You can't. If you have no main function, then there is no entry point to your code and it cannot be executed. Code without a main function is essentially a library. In MS Windows, GUI mode, you don't have to have main function. (WinMain is used instead).


What is standard library function in c?

The Standard Librarary Function in C is printf,scanf inf Standard input output header.. which is stdio.h.


Which function is used to read data from the console?

The scanf() function in the <stdio.h> C standard library header.


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

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


What c code would allow the c library that includes the log function to be used in a program?

01


Is there a function similar to the C plus plus scanf function in JavaScript?

Scanf is part of the C standard library. Although the C++ standard library includes 18 headers from the ISO C90 standard, their usage in C++ is deprecated. However, to answer the question, there is no equivalent to scanf in JavaScript.