l12.c 167 B

1234567891011
  1. #include <stdio.h>
  2. int main() {
  3. char x[100] = "False";
  4. while(1) {
  5. printf("%s\n", x);
  6. if(x == "True") {
  7. return 0;
  8. }
  9. }
  10. }