diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-07-03 16:37:50 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-07-03 16:37:50 +0200 |
| commit | e65f1a0088a86af0426bc523f017631066cc9c42 (patch) | |
| tree | 38c30d4c5cc60e20b2752cff3b2927af9a16f51a /c00/main.c | |
| parent | 4205989a932533f528c0fa8f76126a5b57606c0a (diff) | |
| download | piscine-e65f1a0088a86af0426bc523f017631066cc9c42.tar.gz piscine-e65f1a0088a86af0426bc523f017631066cc9c42.tar.bz2 piscine-e65f1a0088a86af0426bc523f017631066cc9c42.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); +} |
