diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-07-03 21:11:41 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-07-03 21:11:41 +0200 |
| commit | 5dfbcea1bc8b4d4fb3fca13b66a27f818b958b17 (patch) | |
| tree | ee895cdf94b42b16b01af698eae797a0b698032e /c02/main.c | |
| parent | 3086fc662802db86395f439b9ab4ebc44358b5fa (diff) | |
| download | piscine-5dfbcea1bc8b4d4fb3fca13b66a27f818b958b17.tar.gz piscine-5dfbcea1bc8b4d4fb3fca13b66a27f818b958b17.tar.bz2 piscine-5dfbcea1bc8b4d4fb3fca13b66a27f818b958b17.zip | |
c02 start
Diffstat (limited to 'c02/main.c')
| -rw-r--r-- | c02/main.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/c02/main.c b/c02/main.c new file mode 100644 index 0000000..5d6e31b --- /dev/null +++ b/c02/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); +} |
