C program : How to convert days into years,weeks and days





#include <stdio.h>
#define DAYSINWEEK 7
void main()
{
 int ndays, year, week, days;
 printf("Enter the number of days\n");
 scanf("%d",&ndays);
 year = ndays/365;
 week = (ndays % 365)/DAYSINWEEK;
 days = (ndays%365) % DAYSINWEEK;
 printf ("%d is equivalent to %d years, %d weeks and %d days\n",
   ndays, year, week, days);
}

Output:

c programs, c programming, c examples

07 Aug 2015

Post a Comment

:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.

 
Top