Przeglądaj źródła

new trash file l12.c

Stepan 1 miesiąc temu
rodzic
commit
2201e8bf9a
1 zmienionych plików z 11 dodań i 0 usunięć
  1. 11 0
      c/l12.c

+ 11 - 0
c/l12.c

@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+int main() {
+    char x[100] = "False";
+    while(1) {
+        printf("%s\n", x);
+        if(x == "True") {
+            return 0;
+        }
+    }
+}