このセクションでは、C 言語で数値を 100 回出力する方法を見ていきます。いくつかの制限があります。ループ、再帰、マクロ展開は使用できません。
この問題を解決するために、C 言語の setjump と longjump を使用します。 setjump() と longjump() は setjmp.h ライブラリにあります。これら 2 つの関数の構文は次のとおりです。
#include <stdio.h> #include <setjmp.h> jmp_buf buf; main() { int x = 1; setjmp(buf); //set the jump position using buf printf("5"); // Prints a number x++; if (x <= 100) longjmp(buf, 1); // Jump to the point located by setjmp }
5555555555555555555555555555555555555555555555555555555555555555555555555555 555555555555555555555555
以上がC 言語で、ループ、再帰、マクロ展開を使用せずに数値を 100 回出力します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。