Hi, i have a simple program like this:
Qt Code:
  1. int main()
  2. {
  3. int a;
  4. printf("something\n");
  5. scanf("%d",&a);
  6. }
To copy to clipboard, switch view to plain text mode 

and i'm running this program with QProcess but QProcess dont want to emit readyReadStandartOutput() signal until i use write().
It is possible to read data from stdout before i write something to process's stdin? and i dont mean closeWriteChannel() coz i need to write some data later after i read from stdout.

sry for my bad english,
regards
ithinkso