Group: comp.lang.fortran · Group Profile · Search for Timed Writings in comp.lang.fortran
Author: Kurt Kallblad
Date: Jul 3, 2008 11:35
...to get the system date and time using the following code Integer time...> Integer stime Character rdate(64) stime = time() call ctime(stime, rdate) ...! which are to short to store the resulr in stime = time() write (*,*) stime rdate = ctime(stime) ...only one integer argument is allowed write (*,*) rdate end program Good luck Kurt...
|