Compilateur/Fichiers_Tests/progC

9 lines
97 B
Text

int fonction(int * p){
int b = *p + 2;
return 1;
}
int main(){
int b = 1;
fonction(&b);
}