ccplusplus.com
Learn C, C++ Concepts
Wednesday, September 21, 2011
strftime example in c
/************************************************************************* * File : strftime.c * Author : Saurabh Gupta * Desc : strftime example * Source : http://saurabhgupta0527.blogspot.com/p/c.html * Created : AM 08:27 21 September 2011 *************************************************************************/ #include
#include
int main () { time_t rawtime; struct tm * timeinfo; char buffer [80]; time ( &rawtime ); timeinfo = localtime ( &rawtime ); strftime (buffer,80,"Now it's %I:%M%p.",timeinfo); puts (buffer); return 0; } /* * OUTPUT * [sgupta@rhel55x86 time]$ gcc strftime.c -o strftime [sgupta@rhel55x86 time]$ ./strftime Now it's 09:14AM. [sgupta@rhel55x86 time]$ */
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment