Código:
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
struct Clients{
char nombre[50];
char apellido[50];
int DNI;
char clase[1];
int numberSeat;
int plane1[10]={0,0,0,0,0,0,0,0,0,0};//ERROR. ¿POR QUÉ NO SE PUEDE INICILIZAR ASÍ????
};
MENSAJE DEL COMPILADOR:
[Warning] no semicolon at end of struct or union
syntax error before '=' token
GRACIAS