Merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
Paul Faure 2021-05-10 14:21:21 +02:00
commit 531bbd4f09

View file

@ -12,7 +12,9 @@ int f(int p[]){
} }
int main(){ int main(){
int a[5]; int a;
f(a); int c = fonction(3);
printf(a[1]); stop(3);
printf(c);
printf(c);
} }