推 suhorng:windows application如果要用console的話可以呼叫 win api08/11 11:26
→ suhorng:的 AllocConsole,不過我不知道怎麼把它接上stdin/stdout08/11 11:26
單就這個問題回一下
GUI application 若 AllocConsole() 之後
要接上 stdin/stdout 可以這樣做:
AllocConsole();
freopen("CONIN$", "r", stdin);
freopen("CONOUT$", "w", stdout);
int x;
scanf("%d", &x);
printf("x = %d\n", x);
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.115.53.23
→ VictorTom:CD中~~等會記得再來補推.... 08/11 22:32
推 VictorTom:推:) 08/11 23:04