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.

code_c 228B

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