comment convertir n espace entiers séparés en c

int i, n, arr[100];

scanf("%d", &n);
for (i = 0; i < n; ++i)
    scanf("%d", &arr[i]);
Filthy Finch