User profile: etrusks

User info
User name:etrusks
History
Joined:
Number of posts:398
Latest posts:

How to read exactly 1 byte from std::istream
Thanks for the answers guys. I'm trying to implement HTTP client and when receiving a response from ...

How to read exactly 1 byte from std::istream
Hi, I have this [code]std::istream[/code] and I have to read exactly X bytes of data from it. I was...

Can reading a character from the std::istream result in failbit being set?
Thank you very much man, much appreciated! :)

Can reading a character from the std::istream result in failbit being set?
[code] int main()[b]{[/b] for(std::string str; std::getline(std::cin, str);) { //.....

Can reading a character from the std::istream result in failbit being set?
Can reading a character from the std::istream result in failbit being set? [code] #include <iost...