Have made a program that reads a .csv file and stores the highest number in another file. The problem is that my program can't read comma separated numbers like 1,5,6,7,1,2. Here is the loop I need help to change
int i;
int max = 0;
int min = 0;
while (!feof(fp))
{
    fscanf( fp, "%d", &i);
    if (i < min)
    min = i;
    if (i > max)
    max = i;
}  
And this is what I print out:
    fprintf(q,"%d",max);
    printf("maximum value is %d \n", max);
    fclose(q);
    fclose(fp);
 
    