asctime() and asctime_s() functions in C with Examples Last Updated : 04 Jun, 2023 Comments Improve Suggest changes Like Article Like Report asctime() function The asctime() function returns the pointer to the string that contains the information stored in the structure of the struct tm type. This function is used to return the local time defined by the system in string format. This function is defined in <time.h> header file. Syntaxchar *asctime(const struct tm* tm_ptr);ParametersThis function accepts single parameter time_ptr i.e. pointer to the struct tm object to be converted.Return Value This function returns a pointer to a static null-terminated character string that contains the calendar time in the form “Www Mmm dd hh:mm:ss yyyy”, where: Www: represents the day in three-letter abbreviated (Mon, Tue, Wed.., )Mmm: represents the month in three-letter abbreviated (Jan, Feb, Mar.., )dd: represents the date in two digits (01, 02, 10, 21, 31.., )hh: represents the hour (11, 12, 13, 22..., )mm: represents the minutes (10, 11, 12, 45..., )ss: represents the seconds (10, 20, 30..., )yyyy: represents the year in four digits (2000, 2001, 2019, 2020..., )Example The below C program demonstrates the asctime() function. C // C program to demonstrate // the asctime() function #include <stdio.h> #include <time.h> int main() { struct tm* ptr; time_t lt; lt = time(NULL); ptr = localtime(&ptr); // using the asctime() function printf("%s", asctime(ptr)); return 0; } OutputThu Jan 1 00:00:00 1970 asctime_s() function This function is used to convert the given calendar time into a textual representation but unlike asctime() function, the asctime_s() function require the user to provide a string buffer to store the formatted time string. We can't modify the output calendar time in asctime() function whereas we can modify the calendar time in asctime_s() function. The general representation of asctime_s is "Www Mmm dd hh:mm:ss yyyy". Syntaxerrno_t asctime_s(char *buf, rsize_t bufsz, const struct tm *time_ptr)ParametersThis function accepts three parameters: time_ptr: pointer to a const struct tm object specifying the time to printbuf: pointer to a buffer provided by the user that must be of at least 26 bytes in lengthbufsz: the size of the buffer provided by the userReturn ValueIt returns an integer value based on the status of the operation. It returns '0' on success and non-zero vlaue on failure. Note: In some C-compilers asctime_s() won't be supported. We can use strftime() function instead of asctime_s() function. Example The below C program demonstrates the asctime_s() function in C. C // __STDC_WANT_LIB_EXT1__ is a User defined // standard to get astime_s() function to work #define __STDC_WANT_LIB_EXT1__ 1 #include <stdio.h> #include <time.h> int main(void) { struct tm tm = *localtime(&(time_t){ time(NULL) }); printf("%s", asctime(&tm)); // Calling C-standard to execute // asctime_s() function #ifdef __STDC_LIB_EXT1__ char str[50]; // Using the asctime_s() function asctime_s(str, sizeof str, &tm); // Print the current time // using the asctime_s() function printf("%s", str); #endif } OutputSun Jun 4 17:25:35 2023 Conclusion asctime() function returns a pointer to a static buffer that contains the date and time in the textual format whereas asctime_s() function require the user to provide the buffer to store the time converted in string format and it returns an error code which is an integer value that represent the final status of the operation. Comment More infoAdvertise with us Next Article asctime() and asctime_s() functions in C with Examples avsadityavardhan Follow Improve Article Tags : C Language C-Functions Similar Reads C Programming Language Tutorial C is a general-purpose mid-level programming language developed by Dennis M. Ritchie at Bell Laboratories in 1972. It was initially used for the development of UNIX operating system, but it later became popular for a wide range of applications. Today, C remains one of the top three most widely used 5 min read Dynamic Memory Allocation in C using malloc(), calloc(), free() and realloc() In C, a variable defined in a function is stored in the stack memory. The requirement of this memory is that it needs to know the size of the data to memory at compile time (before the program runs). Also, once defined, we can neither change the size nor completely delete the memory.To resolve this, 9 min read Data Types in C Each variable in C has an associated data type. It specifies the type of data that the variable can store like integer, character, floating, double, etc.Example:C++int number;The above statement declares a variable with name number that can store integer values.C is a statically type language where 5 min read C Language Introduction C is a general-purpose procedural programming language initially developed by Dennis Ritchie in 1972 at Bell Laboratories of AT&T Labs. It was mainly created as a system programming language to write the UNIX operating system.Main features of CWhy Learn C?C is considered mother of all programmin 6 min read C Arrays An array in C is a fixed-size collection of similar data items stored in contiguous memory locations. It can be used to store the collection of primitive data types such as int, char, float, etc., as well as derived and user-defined data types such as pointers, structures, etc. Creating an Array in 7 min read C Pointers A pointer is a variable that stores the memory address of another variable. Instead of holding a direct value, it has the address where the value is stored in memory. This allows us to manipulate the data stored at a specific memory location without actually using its variable. It is the backbone of 9 min read C Programs To learn anything effectively, practicing and solving problems is essential. To help you master C programming, we have compiled over 100 C programming examples across various categories, including basic C programs, Fibonacci series, strings, arrays, base conversions, pattern printing, pointers, and 8 min read Basics of File Handling in C File handling in C is the process in which we create, open, read, write, and close operations on a file. C language provides different functions such as fopen(), fwrite(), fread(), fseek(), fprintf(), etc. to perform input, output, and many different C file operations in our program.Need of File Han 13 min read Operators in C In C language, operators are symbols that represent some kind of operations to be performed. They are the basic components of the C programming. In this article, we will learn about all the operators in C with examples.What is an Operator in C?A C operator can be defined as the symbol that helps us 11 min read Bitwise Operators in C In C, bitwise operators are used to perform operations directly on the binary representations of numbers. These operators work by manipulating individual bits (0s and 1s) in a number.The following 6 operators are bitwise operators (also known as bit operators as they work at the bit-level). They are 6 min read Like