I am writing a program that will be used on a Solaris machine. I need a way of keeping track of how many seconds has passed since the start of the program. I\'m talking very sim
You just need to store the date/time when application started. Whenever you need to display for how long your program is running get current date/time and subtract the when application started.