Counting Down to the Significant Second:<br><br>tprt.c:<br><br>#include &lt;stdio.h&gt;<br>#include &lt;time.h&gt;<br><br>int main (int&nbsp; argc, char *argv[])<br>{<br>&nbsp; time_t now;<br>&nbsp; printf(&quot;Time: %ld\n&quot;,time(&amp;now));<br>
}<br><br><br>gcc tprt.c<br><br>while true<br>do<br>&nbsp;&nbsp; ./a.out &gt;&gt; tprt.out<br>&nbsp;&nbsp; sleep 1<br>done<br><br>tail -f ./tprt.out<br><br>Current values for me on a work machine:<br><br>Time: 1234549942<br>Time: 1234549943<br>
Time: 1234549944<br>Time: 1234549946<br>Time: 1234549947<br>Time: 1234549948<br>Time: 1234549949<br>Time: 1234549950<br><br>-- CHS<br><br>