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;
}
......................
#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
Post a Comment