What does the condition in the following if statement do? if (read(read(cin, data1), data2))
belongs to book: C++ Primer|Stanley B.Lippman, Josee Lajoie, Barbara E.Moo|5th Edition| Chapter number:7| Question number:10
All Answers
total answers (1)
The condition test if both
`data1`
and`data2`
are read correctly.