C++ Program to Find Year is leap Year

Write a C++ Program to Find Year is leap Year with an example. In this leap year example, we used the If statement to check whether  year % 400 equals 0 – Year divisible by 400 is a leap. ( year % 4 == 0 ) && ( year % 100 != 0)) – Any … Read more