diff options
| author | Cabergs Charles <cacharle@e-r6-p7.s19.be> | 2019-07-03 16:37:50 +0200 |
|---|---|---|
| committer | Cabergs Charles <cacharle@e-r6-p7.s19.be> | 2019-07-03 16:37:50 +0200 |
| commit | 57ae398fc76f5dc53a1a62ceda1b72445273da86 (patch) | |
| tree | 38c30d4c5cc60e20b2752cff3b2927af9a16f51a /c00/main.c | |
| parent | 7a6ae8c6fa665f0c67fe7b4296778026f08764ce (diff) | |
| download | piscine-57ae398fc76f5dc53a1a62ceda1b72445273da86.tar.gz piscine-57ae398fc76f5dc53a1a62ceda1b72445273da86.tar.bz2 piscine-57ae398fc76f5dc53a1a62ceda1b72445273da86.zip | |
c00
Diffstat (limited to 'c00/main.c')
| -rw-r--r-- | c00/main.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/c00/main.c b/c00/main.c new file mode 100644 index 0000000..5d6e31b --- /dev/null +++ b/c00/main.c @@ -0,0 +1,49 @@ +#include <stdio.h> +#include <limits.h> +/*#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); +} |
