Skip to content

Commit b32d9d0

Browse files
committed
commit the real file not the executable.
1 parent 2a733cb commit b32d9d0

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#include "main.h"
2+
3+
/**
4+
* print_most_numbers - print numbers from 0 -> 9, except 2, 4.
5+
*
6+
* Return: nothing.
7+
*/
8+
void print_most_numbers(void)
9+
{
10+
int counter;
11+
12+
for (counter = 0; counter <= 9; counter++)
13+
{
14+
if (counter != 2 && counter != 4)
15+
{
16+
_putchar(counter + '0');
17+
}
18+
}
19+
_putchar('\n');
20+
}

0 commit comments

Comments
 (0)