Help for this page

Select Code to Download


  1. or download this
    #include <stdio.h>
    #include <stdlib.h>
    ...
               there are either no digits or non-digits
       case c) a null string results in 0
    */
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $a = "23B";
    $a +=0;
    print $a;
    
  3. or download this
    my $x = "00012";
    print "$x\n";
    ...
    ##prints
    #00012
    #12