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.

test_file 206B

12345678910111213141516
  1. int fonction1(int * a){
  2. int b = *a;
  3. printf(b);
  4. return 1;
  5. }
  6. int main(){
  7. int l = 21;
  8. int * p = &l;
  9. int c = fonction1(p);
  10. printf(c);
  11. p = &c;
  12. *p = 2;
  13. printf(c);
  14. return 0;