赞题库-背景图
单项选择题

If the pointer p is defined correctly (running on VC + +), to make p point to two successive integer dynamic storage units, the incorrect statement is (    )

A.p=2*(int *)malloc(sizeof(int));
B.p=(int *)malloc(2*sizeof(int));
C.p=(int *)malloc(2*4);
D.p=(int*)calloc(2, sizeof(int));