Monday, April 18, 2022

How to Implement Leap Year C Program

#include <stdio.h>

int main(){

   int year;

   printf("Enter the year  : ");

   scanf("%d",&year);

   if (((year % 4 == 0) && (year % 100!= 0)) || (year%400 == 0))

      printf("%d is a leap year", year);

   else

     printf("%d is not a leap year",year);

   return 0;

}

No comments:

Post a Comment

How to install and configure Oracle Apex 24.1 with ORDS 22, Tomcat 9 and Jasper Report 7 on Oracle Linux 8.10

#########################Install Oracle  APEX 24.1################################ ----------------------------------------------------...