putting numbers from file in an array C code example
Example 1: take array as input in c
int size=5;
int array[size]; // array of size=5;
for(i=0;i<size;i++){
scanf("%d",&array[i]);
}
Example 2: c read numbers from file
change to
fscanf(myFile, "%1d", &numberArray[i]);