When running the C program below [1], I can see an output window that says:
Hello, World!
Press ENTER to end terminal session.
Pressing enter brings me back to the 5250 session.
How can I get this terminal back after I have exited it?
One way is to call the C program again. When doing so I can see the result of the previous invocation. However, I just want to popup the terminal with the existing contents.
Cheers, Wim
[1]
#include <stdio.h>
int main(void)
{
printf("%s", "Hello, World!");
}
------------------------------
Wim Jongman
------------------------------