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.
while(1) で実行され、整数を返す関数を作成しました。この関数をバックグラウンドで有効にして、戻り値を回復したいと考えています。
誰が私を助けてください!
ここに私の機能があります:
int my_fct() { while(1) { int result = 1; return result; } }