struct student {
int marks[3];
int numberofsubjects[3];
};
I create : struct student student;
in my .c file,
If I try to assign using
student.marks = {99,99,99};
I do see the error: expected expression before ‘{’ token
Is there something that I am missing?