+ 2
What does the below mentioned function do? Does it have any parameters and if it does, what are they what do they mean?
C++
2 Réponses
+ 3
Whenever you read or write something in C++, the information is stored in a stream. ignore() is able to manipulate such a stream by discarding characters in the stream. Maybe this article can help you: http://www.cplusplus.com/reference/istream/istream/ignore/
+ 1
Thanks