I have a piece of code exactly:
static constexpr uint32_t secondsInADay = 60 * 60 * 24;
static constexpr uint32_t secondsInAnHour = 60 * 60;
static constexpr uint32_t secondsInAMinute = 60;
Would it be faster/efficient to store it like this:
static constexpr uint32_t secondsInADay = 86400;
static constexpr uint32_t secondsInAnHour = 3600;
static constexpr uint32_t secondsInAMinute = 60;
Or will it just be the same? Will it also use more memory?