Help for this page

Select Code to Download


  1. or download this
    #include <locale.h>
    #include <stdio.h>
    ...
    
        return 0;
    }
    
  2. or download this
    use v5.10;
    use POSIX qw(LC_ALL setlocale strftime);
    ...
    
    my $march = strftime("%B", 0, 0, 0, 1, 2, 123);
    say $march;