#include <stdio.h>

void triple(int *nombre)
{
    *nombre *= 3;
}

int main(int argc, const char * argv[])
{
    int value;
    value = 10;
    triple(&value);
    printf("La valeur de value : %d\n", value);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: