Help for this page

Select Code to Download


  1. or download this
    #include< stdio.h>
    main (int argc, char *argv[])
    ...
            }
            return 0;
    }
    
  2. or download this
    
    #!/usr/bin/perl
    ...
    $output_file="output.txt";
    open(OP, $output_file) || die("Could not open file!");
    @sequence=<OP>;     # tosses the contents of "output.txt" in an array 
    +"@sequence" to work on.