Our website is made possible by displaying online advertisements to our visitors.Please consider supporting us by disabling your ad blocker.
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Translate it in your own Language

Print this Job Post

Print Friendly and PDF

Friday, May 2, 2014

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.

C programming code
#include <stdio.h>
#include<conio.h> 
void 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);  
   getch();
}

1 comment:

  1. i think dis program can b made simpler by writing dis way:

    #include
    #include
    void main()
    {
    int year;
    printf("Enter a year to check if it is a leap year\n");
    scanf("%d", &year);
    if(year%100==0 && year%400==0)
    printf("it is leap yr\n");
    else
    if(year%100!=0 && year%4==0)
    printf("it is leap yr \n");
    else
    printf("not leap year");
    getch();
    }

    ReplyDelete

Copyright @ CrackMNC 2014-2024
Divas Nikhra Theme by Crack MNC