main() { int *a[10]; int (*b)[10]; printf("%d %d %d\n",sizeof(a),sizeof(b),sizeof(*b)); }