Check if input is a leap year - C Data Structure

C examples for Data Structure:Algorithm

Description

Check if input is a leap year

Demo Code

#include <stdio.h>

int main(){//from   w w w .  ja v a2s .  co  m
    int year;

    while (scanf("%d", &year) != EOF)

    if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
        printf("%d is a leap year\n", year);
    else
        printf("%d is not a leap year\n", year);


    return 0;
}

Result


Related Tutorials