Ask Question
19 February, 13:37

Which of the following loop condition statements will read all the data in the file assuming that each record in the file is two integer values, and you will read the first one into a variable named intOne, and the other into intTwo?

a. while (inFile >> intOne >> intTwo)

b. while (inFile (intOne, intTwo))

c. while (inFile)

d. while (inFile >> intOne >> intTwo) and while (inFile (intOne, intTwo))

+2
Answers (1)
  1. 19 February, 16:35
    0
    A is probably the one
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which of the following loop condition statements will read all the data in the file assuming that each record in the file is two integer ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers