The ctime() function is define in the time.h header file. The ctime() function returns the string representing the localtime based on the argument timer.
Syntax:
char *ctime(const time_t *timer)
Parameters: This function accepts single parameter time_ptr. It is used to set time_t object that contains a time value.
Return Value: This function returns a string that contains the date and time which is in human readable form.
Example:
Www Mmm dd hh:mm:ss yyyy
Note: The description of results are given below:
- Www: Day of week.
- Mmm: Month name.
- dd : Day of month.
- hh : Hour digit.
- mm : Minute digit.
- ss : Second digit.
- yyyy : Year digit.
Example:
// C program to demonstrate // ctime() function. #include <stdio.h> #include <time.h> int main () { time_t curtime; time (&curtime); printf ( "Current time = %s" , ctime (&curtime)); return (0); } |
Output:
Current time = Fri Sep 28 08:13:09 2018
leave a comment
0 Comments