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 コードがあります。スレッド スリープ メソッドを使用して CPU 負荷を減らすことができます。
#include<stdio.h> int main() { char a; while((a=getchar())!='z')// to quit the program when z is pressed { } return 0; }