In this section, you will learn how to get the current time in C.
The header file <time.h> provides all date and time functions. In the given example, the time() function determines the current time in seconds and assigns it to time_t type variable t. The ctime() function converts the number of seconds to the current date and time. The printf() function then prints the current date and time.
Here is the code:
CURRENTT.C
#include <time.h>
|
Output will be displayed as:
CURRENTT.EXE
![]()
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: C Current Time View All Comments
Post your Comment