my/c/l12.c
2026-05-12 18:40:07 +03:00

11 lines
No EOL
167 B
C

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