c00/ex00: create main

This commit is contained in:
Aleksei Chubukov 2023-11-22 01:10:44 +04:00
parent 1ecadf1b71
commit 6a49d7c807

13
c01/ex00.c Normal file
View File

@ -0,0 +1,13 @@
#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);
}