I have seen structure declarations which looks like this one
typedef struct br {
int year;
int km;
} Car;
I know that I can use that structure like
Car ford;
ford.year = 1980;
ford.km = 12
But for what “br” stands in the declaration ?
bris called the structure tag.The new type created is
struct brandCaris just a type alias forstruct br.This declaration
is equivalent to this declaration:
Also the combo form:
is equivalent to these declarations: