#include <stdio.h> int main() { int a = 0; while (0 == 0) { // 無限ループ printf("%d\n", (a = a + 1)); // aを1増やして出力 } return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: