<<< Formatted Input | Index | What is EOF? >>> |
Unformatted input means
reading individual characters
discovering data type and format as you read
#include <iostream>
int main()
{
int onechar; // using int because char cannot represent EOF
while ( ( onechar = std::cin.get() ) != EOF ) {
std::cout.put( onechar );
}
return 0;
}
<<< Formatted Input | Index | What is EOF? >>> |