Write a program for leap year
Answers
Answered by
2
* C program to find whether a given year is leap year or not.{int year;printf("Enter a year \n");scanf("%d", &year);if ((year % 400) == 0)printf("%d is a leap year \n", year);else if ((year % 100) == 0)
Answered by
0
java or c++ first specify man
deepikakumarikvs:
C++
Similar questions