-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
52 lines (41 loc) · 1.7 KB
/
main.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
41
42
43
44
45
46
47
48
49
50
51
52
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bde-koni <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/28 16:20:42 by bde-koni #+# #+# */
/* Updated: 2025/02/05 11:52:31 by bde-koni ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
#include <stdio.h>
int main(void)
{
//char s[50] = "";
// char *s = "hello";
// ft_printf("%s\n", s);
// char *p = "hallo/";
// ft_printf("%p", s);
// printf(" NULL %s NULL \n", (char *)NULL);
// ft_printf(" NULL %s NULL \n", (char *)NULL);
// unsigned int xx = 555555555;
// printf("%s %%% tussenstukje %X \n", s, xx);
// ft_printf("%s %%% tussenstukje %%%%%s %X \n", s, s, xx);
// printf("%d \n", printf("%d", xx));
// printf("%d \n", ft_printf("%d", xx));
// void *p = 0;
// printf(" %p %p ", p, p);
// ft_printf(" %p %p ", p, p);
// int n = 0;
// printf(" %d \n", -2147483649);
// ft_printf(" %d \n", 2147483648);
// ft_printf(" %u ", -1);
// printf(" %u ", -1);
// ft_printf("%k", 2);
//printf("%k", 2);
// ft_printf("% %%% %k hallo %");
// printf("% %%% %k hallo %");
return (0);
}