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 203B

12345678910111213141516171819
  1. int g(int y[]){
  2. int u;
  3. y[1] = 2;
  4. return 15;
  5. }
  6. int fonction(int p[]){
  7. g(p);
  8. return 1;
  9. }
  10. int main(){
  11. int b[2];
  12. int c = fonction(b);
  13. c = get();
  14. b[0] = 25;
  15. printf(b[0]);
  16. }