my/c/l12.c

11 lines
167 B
C
Raw Normal View History

2026-06-26 00:33:10 +03:00
#include <stdio.h>
int main() {
char x[100] = "False";
while(1) {
printf("%s\n", x);
if(x == "True") {
return 0;
}
}
}