new trash file l12.c

This commit is contained in:
Stepan 2026-05-12 18:40:07 +03:00
parent e3d7f15489
commit 2201e8bf9a

11
c/l12.c Normal file
View file

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