+ 17

what is <stdlib.h>?

22nd Apr 2020, 3:25 AM
narthana wickramasinghe
narthana wickramasinghe - avatar
7 Answers
+ 75
The <stdlib.h> header defines four variable types, several macros, and various functions for performing general functions. <stdlib.h>"C standard library"
22nd Apr 2020, 6:49 AM
Nazwa Shabrina Zain
+ 19
narthana wickramasinghe <stdlib.h> stands for standard library header file This file contains functions for allocating and freeing memory dynamically and many more .... Search it you will get more information
22nd Apr 2020, 3:50 AM
Vinesh Wadhwani
Vinesh Wadhwani - avatar
+ 8
It is the C standard library.
22nd Apr 2020, 3:35 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar
+ 1
<stdlib.h>"C standard library"
8th Nov 2020, 8:09 PM
Mehrob Abdulvahobov
Mehrob Abdulvahobov - avatar
0
what it means and contains?
22nd Apr 2020, 3:37 AM
narthana wickramasinghe
narthana wickramasinghe - avatar
0
Standerd library.h=>full form =>C/c++ /\\here you can get declaration of functions related to input or output...function like system() and related to dynamic memory allocation can be also found here..past we use malloc.h for memory memory allocating functions.... Note=>coding of a function is in library files..e.g=>Math.lib Example...=> #include<stdlib.h> int main(){ printf("hello");/*stdlib function also in stdio.h...*/ return 0; }
22nd Apr 2020, 4:24 AM
ADR [Reactive]
ADR [Reactive] - avatar