say the file contains:
890809
8989
1343434324
4738294

im trying to read line by line and store each into separate arrays. not working...

Code:
char str_out[10][40]
file_01=fopen("test_01.txt","r");

for(i=0; i<8; i++){
fscanf(file_01, "%s\n", str_out[i]);
printf("%s",str_out[i]);}