im having a problem getting this to work. the array....
this is what i get:Code:struct airline {
int seats[11] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 } ;
char * customer;
};
when i try int seats[11]; it works fine..Code:9 C:\Dev-Cpp\airlines.c [Warning] no semicolon at end of struct or union
9 C:\Dev-Cpp\airlines.c syntax error before '=' token
12 C:\Dev-Cpp\airlines.c syntax error before '}' token
what can i do? thx

