Write a Program In C to Check Whether the Inputted Year is Leap or not.(Programmed by Programmer:Sandesh Acharya)

The Program For Checking Whether a Inputted Year is Leap Or not is Given Below
......................


#include<stdio.h>
main( )
{
int year;
printf ("Enter year:");
scanf ("%d", &year) ;
if ((year%4 == 0 && year %100!=0) || year%400 == 0)
printf ("%d is a leap year\n", year) ;
else
printf ("%d is not a leap year\n", year);
return 0;
}

Comments

Popular posts from this blog

Our Mobile Apps... Sandesh Acharya Programs>>> ByProgrammer: Sandesh Acharya

Creating A Simple Virus In Python. Creator:Sandesh Acharya

Do all Complex Calculations By Using This Application By Programmer Sandesh Acharya