-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest00.c
25 lines (22 loc) · 1.03 KB
/
test00.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: arosado- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/12 16:01:25 by arosado- #+# #+# */
/* Updated: 2021/09/12 16:01:28 by arosado- ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
void ft_ft(int *nbr);
int main(void)
{
int *nbr;
int a;
a = 0;
nbr = &a;
ft_ft(nbr);
printf("Memory Slot: %p, Value: %d", nbr, *nbr);
}