Question: Which header file should be included to use functions like malloc() and calloc()?
A
B
C
D
memory.h
B
stdlib.h
C
string.h
D
dos.h
Note: Not available
#include<stdio.h> #include<stdlib.h> #define MAXROW 3 #define MAXCOL 4 int main() { int **p, i, j; p = (int **) malloc(MAXROW * sizeof(int*)); return 0; }