asctime function

Posted on February 14th, 2009 in C by admin

/*using the asctime function*/

#include <stdio.h>
#include <time.h>
int main()

{
struct tm *ptr;

time_t tm;
tm = time(NULL);
ptr = localtime(&tm);
printf(asctime(ptr));
return 0;

}

Related posts:

  1. Using the Ctime function Using the Ctime function This example shows a sample usage...
  2. Difftime example This shows the difftime function and in this case we...
  3. CHAPTER 5: Pointers and Structures CHAPTER 5: Pointers and Structures As you may know, we...

Related posts brought to you by Yet Another Related Posts Plugin.

Post a comment