This commit is contained in:
Timo Schmidt 2023-03-28 03:36:19 +02:00
parent 3f7ff4a195
commit 699c620751
9 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,10 @@
int main(void)
{
ft_putchar('a');
ft_putchar('b');
ft_putchar('c');
ft_putchar('d');
return (0);
}

View File

@ -0,0 +1,5 @@
int main(void)
{
ft_print_alphabet();
return (0);
}

View File

@ -0,0 +1,5 @@
int main(void)
{
ft_print_reverse_alphabet();
return (0);
}

View File

@ -0,0 +1,5 @@
int main(void)
{
ft_print_numbers();
return (0);
}

View File

@ -0,0 +1,7 @@
int main(void)
{
ft_is_negative(5);
ft_is_negative(0);
ft_is_negative(-5);
return (0);
}

View File

@ -0,0 +1,5 @@
int main(void)
{
ft_print_comb();
return (0);
}

View File

@ -0,0 +1,5 @@
int main(void)
{
ft_print_comb2();
return (0);
}

11
c00/ex07/ft_putnbr_main.c Normal file
View File

@ -0,0 +1,11 @@
int main(void)
{
ft_putnbr(-2147483648);
// ft_putnbr(-10000);
// ft_putnbr(-1);
// ft_putnbr(0);
// ft_putnbr(1);
// ft_putnbr(10000);
// ft_putnbr(2147483647);
return (0);
}

View File

@ -0,0 +1,5 @@
int main(void)
{
ft_print_combn(5);
return (0);
}