C Program to Calculate whether entered year is leap year or not

C Program to Calculate whether entered year is leap year or not



#include
main()
{
int year;
clrscr();
printf("\n enter the year");
scanf("%d",&year);
if(year%4==0 && year%100!=0)//(year%400==0)
printf("\n%d is a leap year \n");
else
printf("\n enter year is not leap year\n");
getch();
}

4 comments:

  1. Its appreciable for a huge collection of beginners. We tried same for both in c and c++. Please visit and suggest. http://www.cprogramming-bd.com

    ReplyDelete
  2. <a href="http://www.cprogramming-bd.com>c programming</a>

    ReplyDelete
  3. Hi,Nice and simple C Program to Calculate whether entered year is leap year or not.Thanks...


    -Aparna
    Theosoft

    ReplyDelete
  4. Would you like to join us !
    At ssvkillari.blogspot.com

    We together write Blogs

    ReplyDelete