소스 검색

new trash file l12.c

Stepan 1 개월 전
부모
커밋
2201e8bf9a
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  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;
+        }
+    }
+}