diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:43:09 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:43:09 +0000 |
commit | 37d6f60957534f590a204b210ec4be14960fe3ce (patch) | |
tree | 846f8852d36c27d6af0eca1abe6a15bc9d0255fc | |
parent | 05be0a6374beee961fed165f8a07f88974fcbf76 (diff) |
Thu, Nov 30, 2023, 9:43 PM -08:00
-rw-r--r-- | meow.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#include <stdio.h> +#include <cs50.h> + +int main(void) +{ + int x = 3; + for (int i; i < x; i++) + { + printf("meow\n"); + } +} |