Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    Outputs:
    2.3 3.4 4.5 5.6 6.7
    1 1 1 1 1
    
  2. or download this
    void do_nothing(double x[], int sizeOfX) {
      int index;
      for(index=0; index<sizeOfX; index++)  x[index] = 1;
    }