home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / c / 11598 < prev    next >
Encoding:
Text File  |  1992-07-25  |  1.0 KB  |  38 lines

  1. Path: sparky!uunet!ccicpg!felix!fritz!scotth
  2. From: scotth@felix.filenet.com (Scott Hopson)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Finding date/time
  5. Message-ID: <19072@fritz.filenet.com>
  6. Date: 25 Jul 92 01:00:45 GMT
  7. References: <1992Jul22.150108.19427@news.uakron.edu>
  8. Reply-To: scotth@fritz.filenet.com (Scott Hopson)
  9. Organization: FileNet Corp., Costa Mesa, CA
  10. Lines: 26
  11.  
  12. In article <1992Jul22.150108.19427@news.uakron.edu> r3kls@vax1.cc.uakron.edu (Kevin L Sheller) writes:
  13. >I'm using ANSI C on a UNIX Sun Station. I need to know how to access the
  14. >current date and time in my program.
  15. > If you've gotta good idea, please e-mail me at: kevins@file02.ecgf.uakron.edu
  16.  
  17. You might try reading the manual. Try "man -k time"
  18.  
  19. here's an example, hope it's what you want.
  20.  
  21.  
  22. #include <time.h>
  23.  
  24. long t;        
  25. char *time_date;
  26.  
  27.  t = time(NULL);    /* gets time in seconds since 00:00:00 GMT 1970 */
  28.  time_date = ctime(&t); /* converts time to a string with time & date */
  29.  
  30.  printf("%s",time_date);
  31.  
  32.  
  33. Good Luck.....
  34. -- 
  35. Scott Hopson   (scotth@filenet.com)
  36.