#include <stdio.h>int main(){double a[200],*p=a,*q=p+1;printf("数组元素个数=%d\n",sizeof(a)/sizeof(a[0]));printf("数组元素的字节数=%d\n",(char*)q-(char*)p);}