Hello Guys!
I have been working in Web Development field for many years. I use php to develop the back-end of websites. For some days, I am working in C++ to develop Database Management systems in c++ but I am unaware of its most syntax and functions.
So, The question I want to ask is there a funtion that returns current date and time in c++?
Actually, in php, we use the following functions to get date and time
<?php
$time = time();
$date = date("d/m/y", $time);
echo $date;
?>
I want a such like method in c++.
The I.D.E I am using is Dev C++
Thanks in advance!