Help for this page

Select Code to Download


  1. or download this
    #!usr/bin/perl -w
    use warnings;
    my @list = ("a1", "b23", "c45", "d1");
    print join (" ",@list),"\n"; 
    #prints: a1 b23 c45 d1
    
  2. or download this
    include <stdio.h>
    int main ()
    ...
       printf("\n"); 
    }
    // prints: a1 b23 c45 d1