M
Mantorok Redgormor
struct mystruct {
int a;
int b;
};
struct mystruct x = { 10, 10 }, y = x;
What section in the standard says that y needs a constant?
And why can't it resolve x so that y can have a copy of its values?
int a;
int b;
};
struct mystruct x = { 10, 10 }, y = x;
What section in the standard says that y needs a constant?
And why can't it resolve x so that y can have a copy of its values?