This example shows how to find number of days between two dates. A date is specified by year/month/day of month, and additionally hour/minute/second.
Program calculates number of days in years since 2000.
#include <iostream>
#include <string>
#include <chrono>
#include <cti...