Leap Year in c

Leap Year in c

#include
main()
{
    int year;
    printf("Enter a year: ");
    scanf("%d",&year);
    if((year%4==0 && year%100!=0)||year%400==0){
        printf("%d is a leap year",year);
    }
    else{
        printf("%d is not a leap year",year);
    }
    return 0;
}



Comments

Popular posts from this blog

VALENTINE DAY PROGRAME

Finding the maximum element in a list:

Book Store in Java