Tech Study

C++ Program To Check Leap Year Using Conditional Operator

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;

    cout<< "Enter any year: ";

    scanf("%d", &year);

    (year%4==0 && year%100!=0) ? printf("%d is leap year",year) :

    (year%400 ==0 ) ? cout << "Leap year" : cout<< year << " is not leap year" ;

    return 0;
}

Result

C++ program to check leap year using conditional operator
C++ program to check leap year using conditional operator

C++ program to check alphabets using conditional operator

C++ program to print day name of week

TaggedC Program to Check Leap Year using Conditional Operator

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more