单项选择题

已知“int *p=malloc(100);”,要释放p所指向的动态内存,正确的语句为()。

A.free(p);
B.free p;
C.free(*p);
D.free[p];