I want to have cin read input from a string.
Is there a way to have it do this?
Something like this:
const char * s = "123 ab";
cin.readFrom(s);//<---- I want something like this
int i;
cin>>i;
cout<<i; //123
See Question&Answers more detail:os