Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

  1. plot sin(x) [c++ to gnuplot]
  2. "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 ??

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.