blob: b923f4e9d8b8e1708a58adecb12d74c77989c3aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#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);
}
|