Some simple code to log your timing of a program in C++ // Timing code using ctime library // Author: Neville Andrade #include <iostream> #include <array> #include <vector> #include <algorithm> #include <tuple> #include <string> #include <ctime> typedef std::tuple<int, int> str_int_tuple; int main() { time_t currentTime; struct tm *localTime; time(¤tTime); localTime = localtime(¤tTime); // Convert the current time to the local time int Day = localTime->tm_mday; int Month = localTime->tm_mon + 1; int Year = localTime->tm_year + 1900; int Hour = localTime->tm_hour; int Min = localTime->tm_min; int Sec = localTime->tm_sec; std::cout << "This program was exectued at: " << Hour << ":" << Min << ":" << Sec << std::endl; std::cout << "And the curren...