-
Notifications
You must be signed in to change notification settings - Fork 21
/
ex11.c
80 lines (65 loc) · 1.69 KB
/
ex11.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* 11. Given the definition of a date structure as defined in this chapter,
* write a function called dateUpdate() that takes a pointer to a date
* structure as its argument and that updates the structure to the following
* day (see Program 8.4).
*
* By Faisal Saadatmand
*/
#include <stdio.h>
#include <stdbool.h>
struct date {
int day;
int month;
int year;
};
/* functions */
void dateUpdate(struct date *);
int numberOfDays(struct date *);
bool isLeapYear(struct date *);
/* Function to calculate tomorrow's date */
void dateUpdate(struct date *today)
{
if (today->day != numberOfDays(today)) {
today->day += 1;
} else if (today->month == 12) { /* end of year */
today->day = 1;
today->month = 1;
today->year += 1;
} else { /* end of month */
today->day = 1;
today->month += 1;
}
}
/* Function to find the number of days in a month */
int numberOfDays(struct date *d)
{
int days;
const int daysPerMonth[12] = { 31, 28, 31, 30, 31, 30,
31, 31, 30, 31, 30, 31 };
if (isLeapYear(d) == true && d->month == 2)
days = 29;
else
days = daysPerMonth[d->month - 1];
return days;
}
/* Function to determine if it's a leap year */
bool isLeapYear(struct date *d)
{
bool leapYearFlag;
if ((d->year % 4 == 0 && d->year % 100 != 0) || d->year % 400 == 0)
leapYearFlag = true; /* it's a leap year */
else
leapYearFlag = false; /* Not a leap year */
return leapYearFlag;
}
int main(void)
{
struct date thisDay;
printf("Enter today's date (dd mm yyyy): ");
scanf("%d%d%d", &thisDay.day, &thisDay.month, &thisDay.year);
dateUpdate(&thisDay);
printf("Tomorrow date is %i/%i/%.2i.\n", thisDay.day, thisDay.month,
thisDay.year % 100);
return 0;
}