how can i get the actual system time to cout?
# include <ctime> should be the library you need, then
long sys_time=time();
cout << sys_time;
that should do it but that might output the time in ticks... but the ctime library should have all the necessary functions.