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

123456789101112131415161718
  1. int g(int tab[]){
  2. tab[1] = 10;
  3. printf(tab[0]);
  4. stop(15);
  5. return 2;
  6. }
  7. int f(int p[]){
  8. p[0] = 1;
  9. g(p);
  10. return 1;
  11. }
  12. int main(){
  13. int a[5];
  14. f(a);
  15. printf(a[1]);
  16. }