Hi, really silly question!
I have defined a sample struct:-
typedef struct record
{
int one;
int two;
int three;
} record;
And i'm trying to access it by:- using record.one = 1;
But i'm getting an error of 'record' was not declared in this scope.
Even though the decloration was in the setup section!
Any ideas what i have done wrong??