设有以下代码
const int SIZE=1000; struct node { int a[SIZE]; }b[SIZE]; memset(b,0,sizeof b);
那么实际上这句memset语句的常数大概是1000还是1000*1000?