20 lines
181 B
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;
|
||
|
}
|