Monday, May 27, 2019

C Program to Check Leap Year

Write a C Program to Check Leap Year ?


Program:

#include <stdio.h>

int main()
{
    int year;

    printf("Enter a year: ");
    scanf("%d",&year);

    if(year%4 == 0)
    {
        if( year%100 == 0)
        {
            // When the year is divisible by 400,  year is a leap year
            if ( year%400 == 0)
                printf("%d is a leap year.", year);
            else
                printf("%d is not a leap year.", year);
        }
        else
            printf("%d is a leap year.", year );
    }
    else
        printf("%d is not a leap year.", year);
   
    return 0;
}

Output:

Enter a year: 1992
1992 is a leap year.
--------------------------------
Process exited after 5.863 seconds with return value 0
Press any key to continue . . .

0 Comments:

Post a Comment