I wanted to use the time.h library to store a birth date type 26/10/2312 (in this format) in a given array, but I've never worked with this library. Can someone give me an explanation?
I have two dates in milliseconds.
I need to recover each day of that period to make an insert in the database. I thought about making a for every day of this period, but I have no idea how to do it!
Dev's good afternoon!
I'm trying to create a script that calculates the end date from an initial date and its deadline in months. Ex:
Starting date: 08/01/2018
Deadline: 60 months
End Date: 7/31/2023 (60 months - 1 day)
function calcDate...