Ask 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 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))

+5
Answers (1)
  1. 11 April, 02:01
    0
    A is probably the one
Know the Answer?
Not Sure About the Answer?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers