1.

Write a program to find that the entered year is a leap year or not.

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


Discussion

No Comment Found

Related InterviewSolutions