summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 05:45:13 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 05:45:13 +0000
commit082dc3bce5289569cc1910de11f528f90ec4fc46 (patch)
tree4737f1488fd1f18dc7195457ea1f9027fced2f09
parent37d6f60957534f590a204b210ec4be14960fe3ce (diff)
Thu, Nov 30, 2023, 9:45 PM -08:00
-rw-r--r--meow.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/meow.c b/meow.c
index df24655..78e92ad 100644
--- a/meow.c
+++ b/meow.c
@@ -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;
}
}