Computer Science, asked by athuljose05, 7 months ago

Write a program to accept a year and check whether it is a leap year or not?​

Answers

Answered by Parkanna91
10

Explanation:

Program to check Leap Year

You can check whether a year is leap or not by using this mathematical logic: Leap Year: If a year is divisible by 4, 100 and 400 then it is a leap year. Lets write this logic in a C Program.

Similar questions