diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-02-17 23:58:48 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-02-17 23:58:48 +0000 |
commit | 19fd1f6fe17e43ebd83020539a13af18197070cc (patch) | |
tree | 0ba41e08d2eaec4611cc728b30bdc382435a35db /wk3/lab/iteration.c | |
parent | 3c2ae5e3880db7eba2f64dff019d569911221c43 (diff) |
Sat, Feb 17, 2024, 3:58 PM -08:00
Diffstat (limited to 'wk3/lab/iteration.c')
-rw-r--r-- | wk3/lab/iteration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk3/lab/iteration.c b/wk3/lab/iteration.c index 46a68c9..32a8a9d 100644 --- a/wk3/lab/iteration.c +++ b/wk3/lab/iteration.c @@ -14,7 +14,7 @@ int main(void) { void draw(int n) { for (int i = 0; i < n; i++) { for (int j = 0; j < i + 1; j++) { - print("#"); + printf("#"); } printf("\n"); } |