14 lines
164 B
C
14 lines
164 B
C
#include <stdio.h>
|
|
void ft_ft(int *nbr);
|
|
int main()
|
|
{
|
|
int sup;
|
|
int *johnny;
|
|
|
|
sup = 666;
|
|
johnny = ⊃
|
|
ft_ft(johnny);
|
|
printf("%d\n", *johnny);
|
|
return (0);
|
|
}
|