Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C アプリを介して cmd プログラムを実行し、入力を取得して出力を cmd に送信できるようにしたいと考えています。私はそのようなことをすることができますか?
ありがとう。
お探しの機能はsystem(cmd). 通常どおりコマンドを実行できます (出力は画面に直接出力されます)。
system(cmd)
system("command.exe");
stdoutまたは、出力 ( ) をファイルにキャプチャします。
stdout
system("command.exe > file.txt");