In the description of time.h I have read that clock_t and time_t are arithmetic types representing times, but I do not understand what exact datatypes these are - how many bytes they hold, etc. For instance, if I have:
Qt Code:
  1. #include <time.h>
  2. time_t now;
  3. now = time();
To copy to clipboard, switch view to plain text mode 
what formatting would I need to use if I use the variable now in a printf statement?