0
eof
What does 'while(inputeof())' mean?
3 Respostas
+ 8
eof stands for "end of file" So basically it loops until it reaches the end of the file.
+ 6
I'd have to see the rest of the code. Usually it's while(!eof()) to get data until the input reaches the end.
0
Thanks !! But what if I put '!' In front of the variable name 'input', it becomes : while(!inputeof())