I would like to know what happens when there are more initializers than array size, e.g. :
int t[3] = { 1, 2, 3, 4 };
Of course, my compiler warns it. I expected undefined behavior, but I didn't find any clause about it in C11 standard. So, did I miss something ?