Help for this page

Select Code to Download


  1. or download this
    boolean DateCalc_check_date(Z_int year, Z_int month, Z_int day)
    {
    ...
                return(true);
        return(false);
    }
    
  2. or download this
    boolean DateCalc_leap_year(Z_int year)
    {
    ...
        { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
        { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
    };