// C PROGRAM TO CHECK WHETHER GIVEN YEAR IS LEAP YEAR OR NOT
#include<stdio.h> void LeapYear(int); void main() { int year; printf("\n C PROGRAM TO CHECK WHETHER GIVEN YEAR LEAP YEAR OR NOT \n"); printf("\n Enter the year : "); scanf("%d",&year); LeapYear(year); //getch(); // return 0; } void LeapYear(int yr) { int rem1,rem2; rem1 = yr%4 ; //rem1 = 0 for leap year rem2 = yr%100; //rem2! = 0 for leap year if((rem1 == 0) && (rem2!=0) || yr%400 == 0) { printf("\n The given year %d is Leap Year..\n",yr); } else { printf("\n The given year %d is Not Leap Year..\n",yr); } }
------------------------------------------------------------------------
output:
root@KDFNKF:/home/rald/Desktop# ./a.out
C PROGRAM TO CHECK WHETHER GIVEN YEAR LEAP YEAR OR NOT
Enter the year : 2012
The given year 2012 is Leap Year..
----------------------------------------------------------------------------------------------------------
No comments:
Post a Comment