+ 1
Which libraries are used in C?
Libraries used in C and its use
2 Antworten
+ 4
Libraries are basically the header files which contain different funtions to perform different work. You must include a header file in your program in order to use its function. E.g. pow () funtion is a part of <math.h> header file. To use pow () funtion you must include math.h . Some important built-in header files are- iostream.h, stdio.h, time.h, conio.h, string.h etc.
+ 12
Libraries in c
https://www.programiz.com/c-programming/library-function