c_piscine__offshore_mains/c01/ex00.c
2023-11-22 01:10:44 +04:00

14 lines
164 B
C

#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);
}