11 lines
No EOL
167 B
C
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;
|
|
}
|
|
}
|
|
} |