Funzione libreria C - asctime ()
Descrizione
La funzione di libreria C. char *asctime(const struct tm *timeptr) restituisce un puntatore a una stringa che rappresenta il giorno e l'ora della struttura struct timeptr.
Dichiarazione
Di seguito è riportata la dichiarazione per la funzione asctime ().
char *asctime(const struct tm *timeptr)
Parametri
Il timeptr è un puntatore alla struttura tm che contiene un orario del calendario suddiviso nei suoi componenti come mostrato di seguito -
struct tm {
int tm_sec; /* seconds, range 0 to 59 */
int tm_min; /* minutes, range 0 to 59 */
int tm_hour; /* hours, range 0 to 23 */
int tm_mday; /* day of the month, range 1 to 31 */
int tm_mon; /* month, range 0 to 11 */
int tm_year; /* The number of years since 1900 */
int tm_wday; /* day of the week, range 0 to 6 */
int tm_yday; /* day in the year, range 0 to 365 */
int tm_isdst; /* daylight saving time */
};
Valore di ritorno
Questa funzione restituisce una stringa C contenente le informazioni sulla data e l'ora in un formato leggibile dall'uomo Www Mmm dd hh:mm:ss yyyy, dove Www è il giorno della settimana, Mmm il mese in lettere, gg il giorno del mese, hh: mm: ss l'ora e yyyy l'anno.
Esempio
L'esempio seguente mostra l'utilizzo della funzione asctime ().
#include <stdio.h>
#include <string.h>
#include <time.h>
int main () {
struct tm t;
t.tm_sec = 10;
t.tm_min = 10;
t.tm_hour = 6;
t.tm_mday = 25;
t.tm_mon = 2;
t.tm_year = 89;
t.tm_wday = 6;
puts(asctime(&t));
return(0);
}
Compiliamo ed eseguiamo il programma sopra che produrrà il seguente risultato:
Sat Mar 25 06:10:10 1989