Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - If the pointer variable p is made to point to a dynamic storage unit for storing plastic data in subsequent program segments, it should be filled in at the underline.
If the pointer variable p is made to point to a dynamic storage unit for storing plastic data in subsequent program segments, it should be filled in at the underline.
The reason for choosing D is the following function name: malloc.

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