Programmation Avancée en C


time.c

00001 #include <stdio.h>
00002 #include <time.h>
00003 
00004 #define MAX_STRING_SIZE 80
00005 
00006 int main()
00007 {
00008     time_t now = time(NULL);
00009     printf("Résultat de ctime: %s",ctime(&now));
00010     char s[MAX_STRING_SIZE];
00011     strftime(s,MAX_STRING_SIZE,"%x %X",localtime(&now));
00012     printf("%s\n",s);
00013 
00014 
00015     return 0;
00016 }
00017 
00018