C program to convert days into years, weeks and days.
Solution:
In this program, accept number of days from user and convert it into years, weeks & days.
Output:

Solution:
In this program, accept number of days from user and convert it into years, weeks & days.
#include<stdio.h>
int main()
{
int yrs,weeks,days;
printf("Enter days: ");
scanf("%d",&days);
/*To calculate year*/
yrs = days/365; // Here, leap years are ignored
/* To calculate weeks*/
weeks = (days%365)/7;
/* To calculate days*/
days = days-((yrs*365) + (weeks*7));
/* Print calculated years,weeks & days*/
printf("\n%d Years, %d Weeks & %d Days.",yrs,weeks,days);
return 0;
}
Output:



