c_piscine__offshore_mains/c00/ex03.c

20 lines
202 B
C
Raw Normal View History

2023-11-22 21:34:57 +00:00
#include <unistd.h>
2023-11-21 19:10:07 +00:00
void ft_print_numbers(void);
int main(void)
{
2023-11-22 21:34:57 +00:00
write(1, "0123456789%\n", 12);
2023-11-21 19:10:07 +00:00
ft_print_numbers();
2023-11-22 21:34:57 +00:00
write(1, "%\n", 2);
2023-11-21 19:10:07 +00:00
return 0;
}
void setUp(void)
{
}
void tearDown(void)
{
}