Ads Top

TECHASHUS -C PROGRAM TO CHECK LEAP YEAR



C program to check leap year: c code to check leap year, year will be entered by the user.

PROGRAM :


#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
2012
2012 is a Leap Year.

No comments:

Powered by Blogger.