Hi.
Is there a way to read something from the Win 32 Console screen that is already been printed something like this:
Code:
#include <iostream>

using namespace std;

int main()
{
    char cstring[100];
    
    cout<<"hi";
    cin.getline( hopesit, 100 );
    cin.get(); 
}
My idea is that he would read the "hi" printed in the screen and you don't need to hit enter, just that he uses "hi" as cstring. Is there a way to do that, thx.