Ho un problema. Ho la seguente struct;

codice:
typedef struct aereo_s
{
char city[20];
int n;
}aereo;
Il seguente vettore:
codice:
aereo vettore[50];
E devo usare la funzione strcpy:

codice:
char stringa[20];
scanf("%s", stringa);

strcpy(vettore[0].city, stringa);
Sulla strcpy mi esce fuori un errore run-time!
NOn capisco il motivo..
Grazie