Write C Program Find Whether Given Year Leap Year Gregorian Calendar Three Criteria Must Q43835926
Write a C program to find whether a given yearis a leap year or not.
In the Gregorian calendar three criteria must be taken into accountto identify leap
years:
● The year can be evenly divided by 4;
● If the year can be evenly divided by 100, it is NOT a leap year,unless;
● The year is also evenly divisible by 400. Then it is a leapyear.
you can solve the question using the following statements ( if ,while , for ) , Try to make the solution as brief as youcan
Expert Answer
Answer to Write a C program to find whether a given year is a leap year or not. In the Gregorian calendar three criteria must be t…
OR