home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / bc-1.03-base.tgz / bc-1.03-base.tar / fsf / bc / Test / aryprm.b < prev    next >
Text File  |  1994-11-04  |  205b  |  17 lines

  1. define p ( x[] ) {
  2.   auto i;
  3.   for (i=0; i<10; i++) x[i];
  4. }
  5.  
  6. define m ( x[] ) {
  7.   auto i;
  8.   for (i=0; i<10; i++) x[i] *= 2;
  9. }
  10.     
  11. scale = 20;
  12. for (i=0; i<10; i++) a[i] = sqrt(i);
  13.  
  14. p(a[]);
  15. m(a[]);
  16. p(a[]);
  17.