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

For loop C++

VALENTINE DAY PROGRAME

Charecter & space founder in c program