How to print Current Time and Date

Keyur Shah

I am confused....I printed __TIME__ in C then it prints time and then again after 5 seconds I executed it. I did it for 5 times. But for all the times, the time remained same. Time is not getting changed even not second also getting changed. All the time hours minutes and seconds remain same. So how can I print Current Time and Date using time.h

Daniel Kamil Kozar

__TIME__ is a preprocessor macro that expands to the time at which the file was compiled. It will not change between consecutive runs of the program. As you can see in the link to the documentation that I posted, it clearly says that it expands to a "string constant".

If you want to get the current time, have a look at the time.h header.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to print Current Time and Date

From Dev

How to print current Time and Date in Q Basic?

From Dev

How to print the current time and date in ISO date format in java?

From Dev

Print date and time for the beginning of the current week (in bash)

From Dev

How to get Current Date time

From Dev

How to disable current date by time?

From Dev

How to print date and time with jquery

From Dev

How to convert normal date to date with current time

From Dev

How to print array data following current date

From Dev

How to print the current time in a Batch-File?

From Dev

How to print the current time in a Batch-File?

From Dev

Print current time and date when a command is issued in linux shell

From Dev

How to display / print current date and next date using javascript

From Dev

print current date in java

From Dev

How to add current time to a previous date in java?

From Java

How to get current local date and time in Kotlin

From Java

How to get current time and date in Android

From Java

How to get the current date/time in Java

From Java

How to get current time and date in C++?

From Java

How to get current date & time in MySQL?

From Dev

How to get the current date without time in scala

From Dev

How to get current date and time in Android?

From Dev

How to get current date and time in view?

From Dev

MVC how to retrieve the current date and time in a view

From Dev

How to get current date time format in SQlite?

From Dev

How to get current Date and Time on captured image

From Dev

How to save date into database with current time?

From Dev

How to insert current date time in vscode?

From Dev

how to get the current date and time of the system in java

Related Related

HotTag

Archive