InterviewSolution
| 1. |
Write a program to input the number of a month ( 1 for January, 2 for February and so on). Depending on the number, display the number of days in that month. Assume the year is a leap year. |
|
Answer» Program to find the number of days in a given MONTH of a given year is given below.C C++ Java Python 31 // C program to find the number of days in a given month23#include |
|