So, the question is as follows: I have an input data, loaded into cin, which (data) has no separators at all and consists of 2-dig. hex numbers, for ex:
ab2b6f //here it is ab 2b 6f
Is it possible to separate them without buffering? I do not want to waste a memory, 'cause inputs can be really long;
UPD: solved by using 2-char buffer.
===================================