この種の行「1 Myke Tyson 1234567891」を構造体の入力として取得しようとしています
これを行う最善の方法は何ですか?
これは私が試したものです:
scanf("%d", &list.n1);
fgets(list.name, 14, stdin);
for(i = 0; i < 10; i++)
{
scanf("%d", &list.n2[i]);
}
編集:これは構造体です:
struct ex{
int n1;
char name[14];
int n2[10];
}