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

To generate a PDF using JavaScript in Oracle APEX from a collection

  To generate a PDF using JavaScript in Oracle APEX from a collection, you can follow these steps: 1. Create a button or link on your APEX p...