-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.c
29 lines (26 loc) · 1.13 KB
/
test.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pbie <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/10 15:16:39 by pbie #+# #+# */
/* Updated: 2017/11/10 15:19:09 by pbie ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <float.h>
int main(void)
{
int x;
char c;
x = 15;
c = 'a';
// printf("UINT_MAX : %u\n", (unsigned int) UINT_MAX);
// printf("%020p!\n", &x);
printf("%5%!\n");
return (0);
}