[ERROR]
A nonmember of a structure or union was incorrectly used.
struct A {
int i;
} a;
void main(void) {
a.I=2;
}
On the right side of the ì->ì or . operator, there must be a member of the structure/union specified on the left side. C is case sensitive.