Tech Study

C Program to Check Leap Year

Introduction

C Program to check leap year using conditional operator. 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

C Program to Check Leap Year using Conditional Operator
C Program to Check Leap Year using Conditional Operator.

 

Here are some more c program example for your practice :

C Program to Find the Largest Number using Conditional Operator

C program to check alphabets using conditional operator

TaggedC Program to Check Leap Year using Conditional Operator

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more