ft_ft.c 140 B

1234567
  1. // Create a function that takes a pointer to int as a parameter, and sets the value "42" to that int.
  2. void ft_ft(int *nbr)
  3. {
  4. *nbr = 42;
  5. }