Skip to content

Commit 030ac28

Browse files
committed
betty_style: 1-alphabet.c
1 parent b5e6718 commit 030ac28

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

0x02-functions_nested_loops/1-alphabet.c

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
void print_alphabet(void)
1010
{
1111
int c = 97;
12+
1213
while (c <= 122)
1314
{
1415
_putchar(c);

0 commit comments

Comments
 (0)