From 3086fc662802db86395f439b9ab4ebc44358b5fa Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 3 Jul 2019 18:19:13 +0200 Subject: c01 --- c01/main.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 c01/main.c (limited to 'c01/main.c') diff --git a/c01/main.c b/c01/main.c new file mode 100644 index 0000000..5d6e31b --- /dev/null +++ b/c01/main.c @@ -0,0 +1,49 @@ +#include +#include +/*#include "ex00/ft_putchar.c"*/ +/*#include "ex01/ft_print_alphabet.c"*/ +/*#include "ex02/ft_print_reverse_alphabet.c"*/ +/*#include "ex03/ft_print_numbers.c"*/ +/*#include "ex04/ft_is_negative.c"*/ +/*#include "ex05/ft_print_comb.c"*/ +/*#include "ex06/ft_print_comb2.c"*/ +/*#include "ex07/ft_putnbr.c"*/ +#include "ex08/ft_print_combn.c" + +int main() +{ + + /*ft_putchar('a');*/ + /*ft_putchar('z');*/ + /*ft_putchar('\n');*/ + + /*ft_putchar('\n');*/ + /*ft_print_alphabet();*/ + + /*ft_putchar('\n');*/ + /*ft_print_reverse_alphabet();*/ + + /*ft_putchar('\n');*/ + /*ft_print_numbers();*/ + + /*ft_putchar('\n');*/ + /*ft_is_negative(1);*/ + /*ft_is_negative(0);*/ + /*ft_is_negative(-1);*/ + + /*ft_putchar('\n');*/ + /*ft_print_comb();*/ + + /*ft_putchar('\n');*/ + /*ft_print_comb2();*/ + + /*ft_putchar('\n');*/ + /*ft_putnbr(INT_MAX);*/ + /*ft_putchar('\n');*/ + /*ft_putnbr(INT_MIN);*/ + /*ft_putchar('\n');*/ + /*ft_putnbr(-42);*/ + + + ft_print_combn(2); +} -- cgit