C++ Program to Find Leap Year by Using Function

Write a program to find if the inputted year is a leap year or not by using the concept of function. Make a function that checks if the year is a leap year;
- C++ Program to Read and Write Files Using Multiple File Handling
- C++ Program to Check Whether the Entered Number is Palindrome or Not
- C++ Program to a Number is Prime or Not
- C++ Program to Print Armstrong Number from 1 – 500
- C – Convert Entered Number of Days into Years, Months and Days
Source Code,
int isLeapYear(int yr){…}
/*program to find the entered number is a leap year or not*/ #include<iostream.h> #include<conio.h> /*function decleration*/ int leapyear(int yr); void main() { int yr;
cout<<"Enter Year:";
cin>>yr;
leapyear(yr); getch(); } /*function defination*/ int leapyear(int yr) { if(yr%400==0 || yr%100!=0 && yr%4==0) { cout<<"Leap Year"; } else { cout<<"Not Leap Year"; } }