I am successfully sending commands to gnuplot via c++ VS2010. This normally brings up the "gnuplot> " prompt in the console window.
However I have a few "cin >> getsomething" commands after sending the gnuplot commands.
The problem is sometimes my c++ cin>> prompts overwrite the gnuplot commands.
For example (in order of commands)
- plot sin(x) [c++ to gnuplot]
- "What is your name ?"; cin >> name ; [c++]
Sometimes results in something like "Whploat is tyour namesin(x)" e.t.c.
How do I stop this ??