malloc c programming 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 = (castType*) malloc(size);
int* a =(int*)malloc(sizeof(int))
ptr = (castType*) malloc(size);