-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalendar_time_1_time.c
38 lines (29 loc) · 1.06 KB
/
calendar_time_1_time.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
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
/* Lo scopo del programma e' di stampare in output nella forma 'Calendar time'
il tempo trascorso tra la prima e la seconda chiamata a time(); sara'
utilizzata la funzione difftime() per calcolare tale tempo */
int main(void) {
time_t start, end;
if ((start = time(&start)) < 0) {
fprintf(stderr, "Err.(%s) getting time(), start\n", strerror(errno));
exit(EXIT_FAILURE);
}
/* Si sospende l'esecuzione per 5 secondi */
sleep(5);
if ((end = time(&end)) < 0) {
fprintf(stderr, "Err.(%s) getting time(), end\n", strerror(errno));
exit(EXIT_FAILURE);
}
/* Stampa a video della sospensione mediante la funzione difftime() */
printf("start: %d\n", (unsigned int)start);
printf(" end: %d\n", (unsigned int)end);
/* Si sarebbe potuto gestire l'output mediante una semplice differenza tra
'end' e 'start' */
printf("Tempo trascorso: %.f secondi\n", difftime(start, end));
return(EXIT_SUCCESS);
}