1 2 3 4 5 6 7 8 9 10 11 12
int a[] = {1, 2, 3, 4}; int main() { if (sizeof(a) != 4*sizeof(int)) return 1; return 0; }