单项选择题

下面程式程序的执行结果是( )。
#include<iostream.h>
voidmain()
int *p, r;
p=new int;
*p=20;
r=sizeof(*p);
cout<<r<<end1;
delete p;

A.程序错误
B.内存为20地址的大小
C.20
D.4