-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf_upperx_minus_load.c
40 lines (36 loc) · 1.45 KB
/
ft_printf_upperx_minus_load.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf_upperx_minus_load.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abenamar <abenamar@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/06 20:08:27 by abenamar #+# #+# */
/* Updated: 2023/05/02 02:01:15 by abenamar ### ########.fr */
/* */
/* ************************************************************************** */
#include "libftprintf_test.h"
static void load(void)
{
const unsigned int upperx[8] = { 0, 123456789, 1000000000, 2147483647, 4294967295, 0, 1000000000, 4294967295 };
int n;
int nb;
n = 0;
while (n < 5)
{
nb = ft_printf("%-9X" EOL, upperx[n]);
printf("%d" EOL, nb);
nb = printf("%-9X" EOL, upperx[n]);
printf("%d" EOL, nb);
++n;
}
nb = ft_printf("%-40X %-80X %-901X" EOL, upperx[5], upperx[6], upperx[7]);
printf("%d" EOL, nb);
nb = printf("%-40X %-80X %-901X" EOL, upperx[5], upperx[6], upperx[7]);
printf("%d" EOL, nb);
}
int main(void)
{
load();
return (0);
}