SAE11_2023/SAE_semestre1/out/test.c

20 lines
181 B
C

#include <stdio.h>
#include <stdlib.h>
int test(int nombre)
{
return nombre;
}
int main(void)
{
int toto = 5;
printf("%d",test(toto));
return EXIT_SUCCESS;
}