Por que a atribuição de literais compostos não funciona sem um typecast

Eu tenho uma pergunta sobre literais em C.

int a;
//a is an integer that is assigned an integer literal 414
a = 414;

float b;
//b is a float that is assigned a float literal of 3.14
b = 3.14;

struct point {
    int x,y;
};

struct point b;
//{5,6} is a compound literal that is assigned to a struture.
b = {5,6}; //doesn't work.

b = (struct point){5,6}; //works.

Isso não parece funcionar sem um typecast? Qual é a razão para isto?

questionAnswers(1)

yourAnswerToTheQuestion