malloc` function in C allocates memory in the code example
Example 1: how to use malloc in c
int* a =(int*)malloc(sizeof(int))
Example 2: how to use malloc in c
ptr = (cast-type*) malloc(byte-size)
int* a =(int*)malloc(sizeof(int))
ptr = (cast-type*) malloc(byte-size)