谁知道下面的程序为什么不能编译:谢谢!#include<stdio.h>#include<conio.h>int main(void){ int byte; float *p,i=10.5;
p=&i; byte=sizeof(int)(*p); printf("byte=%d\n",byte);
getch(); return 0;}
上面为什么不能编译
谢谢,谢谢