#include <stdio.h>
void triple(int *nombre)
{
*nombre *= 3;
}
int main(int argc, const char * argv[])
{
int value;
value = 10;
int *pointeur;
pointeur = &value;
triple(pointeur);
printf("La valeur de value : %d\n", value);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: