In my current project for C language, I have to read from a file 2 int and make sure that after those there is a newline. I'm trying to use the fscanf function (fscanf(f,"%d %d",&a,&b)), but this way I don't know if these are in the same line or if there is a newline after.
Any thoughts?