Work: Memory allocation function
Usage: void *malloc (unsigned size);
Because malloc returns a null pointer, it must be converted to the required type. Because an int pointer (int *) is defined, the pointer returned by malloc must be converted to int *.
So choose d