Programmer en Lang. C
Fermé
info_net_com
Messages postés
26
Date d'inscription
dimanche 26 décembre 2010
Statut
Membre
Dernière intervention
6 juillet 2011
-
22 févr. 2011 à 00:14
jisisv Messages postés 3645 Date d'inscription dimanche 18 mars 2001 Statut Modérateur Dernière intervention 15 janvier 2017 - 22 févr. 2011 à 01:02
jisisv Messages postés 3645 Date d'inscription dimanche 18 mars 2001 Statut Modérateur Dernière intervention 15 janvier 2017 - 22 févr. 2011 à 01:02
A voir également:
- Programmer en Lang. C
- Programmer sms - Guide
- Programmer un mail gmail - Guide
- Programmer en basic sous windows 10 - Télécharger - Édition & Programmation
- Programmer un mail outlook - Guide
2 réponses
jisisv
Messages postés
3645
Date d'inscription
dimanche 18 mars 2001
Statut
Modérateur
Dernière intervention
15 janvier 2017
934
Modifié par jisisv le 22/02/2011 à 01:04
Modifié par jisisv le 22/02/2011 à 01:04
Voir plus bas
Gates gave ^H sold you the windows.
GNU gave us the whole house.(Alexandrin)
Gates gave ^H sold you the windows.
GNU gave us the whole house.(Alexandrin)
jisisv
Messages postés
3645
Date d'inscription
dimanche 18 mars 2001
Statut
Modérateur
Dernière intervention
15 janvier 2017
934
22 févr. 2011 à 01:02
22 févr. 2011 à 01:02
johand@osiris:~/src/ccm$ cat ./affich-20946529-programmer-en-lang-c.c /* ctime example */ #include <stdio.h> #include <time.h> #define DESTINATION "destination.txt" int main(int argc, char *argv[]) { FILE * f = NULL ; f = fopen(DESTINATION,"a+"); time_t rawtime; time ( &rawtime ); fprintf (f, "The current local time is: %s\n", ctime(&rawtime) ); return 0; }