No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

progC 97B

123456789
  1. int fonction(int * p){
  2. int b = *p + 2;
  3. return 1;
  4. }
  5. int main(){
  6. int b = 1;
  7. fonction(&b);
  8. }