Accept any year as input through the keyboard. Write a program to check whether the year is a leap year or not.


#include <stdio.h>
int main()
{
    int year;
    printf("Enter a year: ");
    scanf("%d",&year);
    if(year%4 == 0)
    {
        if( year%100 == 0)
        {
            // year is divisible by 400, hence the 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;
}
Accept any year as input through the keyboard. Write a program to check whether the year is a leap year or not. Accept any year as input through the keyboard. Write a program to check whether the year is a leap year or not. Reviewed by on August 30, 2019 Rating: 5
Powered by Blogger.