diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:45:13 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:45:13 +0000 |
commit | 082dc3bce5289569cc1910de11f528f90ec4fc46 (patch) | |
tree | 4737f1488fd1f18dc7195457ea1f9027fced2f09 | |
parent | 37d6f60957534f590a204b210ec4be14960fe3ce (diff) |
Thu, Nov 30, 2023, 9:45 PM -08:00
-rw-r--r-- | meow.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,8 +4,10 @@ int main(void) { int x = 3; - for (int i; i < x; i++) + int i = 0; + while (i > x) { printf("meow\n"); + i += 1; } } |