c_piscine__offshore_mains/c01/ex00.c

23 lines
212 B
C
Raw Normal View History

2023-11-21 21:10:44 +00:00
#include <stdio.h>
void ft_ft(int *nbr);
int main()
{
int sup;
int *johnny;
sup = 666;
johnny = &sup;
ft_ft(johnny);
printf("%d\n", *johnny);
return (0);
}
void setUp(void)
{
}
void tearDown(void)
{
}