Let's say I have a struct and variables in C like this:
typedef struct {
uint8_t x;
uint8_t y;
uint8_t z;
}my_type;
my_type a;
my_type a10[10];
With C99 is it certain that
sizeof(a) == 3
? (and not 4 or 8)sizeof(a10) == 30
? (and not 40 or 80)