From: Weiqi Gao Newsgroups: comp.os.msdos.djgpp Subject: Re: comp.os.msdos.djgpp.beginner Date: Sun, 01 Aug 1999 23:34:15 -0500 Organization: CRL Network Services Lines: 28 Message-ID: <37A51FC7.167A7916@a.crl.com> References: <1 DOT 5 DOT 4 DOT 16 DOT 19990801230707 DOT 337fc54a AT erie DOT net> NNTP-Posting-Host: a116007.stl1.as.crl.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.6 [en] (X11; I; Linux 2.0.36 i586) X-Accept-Language: en To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Rich wrote: > > I propose, in the interest of avoid harse comments from the more > "seasoned" C/C++ users, that perhaps we should create a NEW > newsgroup > comp.os.msdos.djgpp.beginner > and they in there, new comers can be treated with the proper > respect due them. New comers are never treated harshly in this newsgroup. Considering that this news group has a fantastic FAQ, I don't think a "beginner" newsgroup would be necessary. And in general a group for "beginner"s would never work: who's going to ANSWER all the beginner questions? > I still would like to see a working example of strftime > since I haven't been successful getting the LIBC.hlp > example to work for me yet. time_t now; char buf[100]; time(&now); strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", localtime(&now)); This should give you something like "1999-08-01 22:59:56". -- Weiqi Gao weiqigao AT a DOT crl DOT com