+ 17
what is <stdlib.h>?
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"
+ 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
+ 8
It is the C standard library.
+ 1
<stdlib.h>"C standard library"
0
what it means and contains?
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;
}