Vision and dreams are the blueprints of soul and achievements.
-Mohammed Ahmed F

Program to check Leap year

#include <stdio.h>

int  main()
{
  int  year;

  printf("Enter a year to check if it is a leap year\n");
  scanf("%d", &year);

  if ( year%400 == 0)
    printf("%d is a leap year.\n", year);
  else if ( year%100 == 0)
    printf("%d is not a leap year.\n", year);
  else if ( year%4 == 0 )
    printf("%d is a leap year.\n", year);
  else
    printf("%d is not a leap year.\n", year); 

  return  0;
}
OUTPUT:
Enter a year to check if it is a leap year 2013
2013 is not a leap year.

Share this

Related Posts

Dear User,

Thank you for your comment. Hope you like this blog. Kindly share us on Social Media so others can be updated.

-Chief Administrative Officer.

Note: only a member of this blog may post a comment.