Computer Science, asked by deepikakumarikvs, 1 year ago

Write a program for leap year

Answers

Answered by sunnymourya
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 AceOfPace
0
java or c++ first specify man

deepikakumarikvs: C++
Similar questions