#include <stdio.h>
typedef struct {
int arr[5];
char ch;
} ST;
int main(void) {
static const ST s[] = { {{ 3, 5, 9 }, 'z'}, {{7}, 'a'}, {{ 4, 8 }, 'x'} };
size_t struct_size = sizeof s / sizeof s[0];
printf("%zu", struct_size);
return 0;
}
/*
run:
3
*/