Showing posts with label number. Show all posts
Showing posts with label number. Show all posts

Sunday, February 15, 2015

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

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

#include<stdio.h>
#include<conio.h>


void main()
{
int y,w,d,a;
clrscr();    //to clear the screen
printf("Enter total number of days:");
scanf("%d",&d);

y=d/365;
a=d%365;
w=a/7;
d=a%7;
printf("
Years=%d
Weeks=%d
Days=%d",y,w,d);

getch();    //to stop the screen
}
Read more »