30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_ft.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/17 20:37:49 by tischmid #+# #+# */
|
|
/* Updated: 2023/03/19 05:23:08 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
void ft_ft(int *nbr)
|
|
{
|
|
*nbr = 42;
|
|
}
|
|
|
|
/* ////
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int nbr[] = {13};
|
|
|
|
ft_ft(nbr);
|
|
printf("%d\n", *nbr);
|
|
return (0);
|
|
}
|
|
*/ ////
|