piscine/c01/ex00/ft_ft.c
Willem Haffmans 607ce08c18 all
2024-09-10 00:18:01 +02:00

29 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ft.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/05 12:20:20 by whaffman #+# #+# */
/* Updated: 2024/06/06 14:37:28 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
void ft_ft(int *nbr)
{
*nbr = 42;
}
/*
#include <stdio.h>
int main(void)
{
int c = 20;
int *nbr = &c;
ft_ft(nbr);
printf("%d", *nbr);
return (0);
}
*/