23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* test.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/20 16:11:53 by dgaillet #+# #+# */
|
|
/* Updated: 2025/11/21 14:31:36 by dgaillet ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <stdio.h>
|
|
#include "ft_printf_bonus.h"
|
|
#include <limits.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("===\t-\t===\n\n");
|
|
printf("%d - ", printf("...% d...\n", -1));
|
|
printf("%d\n\n", ft_printf("...% d...\n", -1));
|
|
}
|