Is it possible to do this:
Print out something on the screen, when the user presses enter, it should print out something else, but on the same line:
cout <<"Hello ";
-wait for an enter-
cout <<"there";
with it looking like this:
Hello there
?