C program to convert given number of days into years, weeks and days

Program

#include<stdio.h>
 
int main()
{
	int y,w,d,a;
	printf("Enter total number of days:");
	scanf("%d",&d);
 
	y=d/365;
	a=d%365;
	w=a/7;
	d=a%7;
	printf("\nYears=%d\nWeeks=%d\nDays=%d",y,w,d);
	
	return 0;
}

Output

Leave a Comment

error: Alert: Content is protected!!