My Subject Blog

C Program Day Month Calculation

/* Write a program to convert days into months and days. */

#include <stdio.h>

int main(void) {
int days;
printf("Enter No of Days : ");
scanf("%d",&days);
printf("\n Month = %d and Days = %d",days/30,days%30);
return 0;
}

Comments

Most Visited Post

C Program to Find Largest Odd Number from Array

C Program for Runtime Memory Allocation for Table of Integers

Followers