Explorar el Código

new trash file l12.c

Stepan hace 1 mes
padre
commit
2201e8bf9a
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  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;
+        }
+    }
+}