Q:

C Program to check leap year using conditional operator.

0

C Program to check leap year using conditional operator.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
int main()
{
    int year;
    
    printf("Enter any year: ");
    
    scanf("%d", &year);
 
    (year%4==0 && year%100!=0) ? printf("%d is leap year",year) :
        
    (year%400 ==0 ) ? printf("LEAP YEAR") : printf("%d is not a leap year",year);
 
    return 0; 
}

Result:

Enter any year: 2017

2017 is not a leap year

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C program to check alphabets using conditional ope... >>
<< C Program to find the largest among three variable...