Monday 17 September 2012

c program to check leap year




DESCRIPTION:
c program to check leap year: c code to check leap year,
year will be entered by the user. Please read the leap year
article before reading the code, it will help you to understand the program.
C programming code
#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

1 comment:

  1. titanium trim - Titanium Art
    This style is a babylisspro nano titanium spring curling iron standard titanium coating black titanium stronger than steel plated aluminum structure that is titanium industries suitable for high performance sportsmen titanium hoop earrings and women. Thin and soft plastic plating is ideal for

    ReplyDelete