Hello, is there a crossplatform way to get current date and time in c++? Thanks.
|
|
|
|
|
|
|
std C libraries provide time()
|
||
|
|
|
|
Use ctime() together with Martins answer if you want a date string. |
||
|
|
|
|
C++ shares its date/time functions with C. The tm structure is probably the easiest for a C++ programmer to work with - the following prints today's date:
|
||
|
|
