From 2201e8bf9ae65c99229b74910d6b259342610b5f Mon Sep 17 00:00:00 2001 From: Stepan Date: Tue, 12 May 2026 18:40:07 +0300 Subject: [PATCH] new trash file l12.c --- c/l12.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 c/l12.c diff --git a/c/l12.c b/c/l12.c new file mode 100644 index 0000000..c7ac06f --- /dev/null +++ b/c/l12.c @@ -0,0 +1,11 @@ +#include + +int main() { + char x[100] = "False"; + while(1) { + printf("%s\n", x); + if(x == "True") { + return 0; + } + } +} \ No newline at end of file