インテル® Fortran コンパイラー 14.0 ユーザー・リファレンス・ガイド

FDATE

Portability Function and Subroutine: Returns the current date and time as an ASCII string.

モジュール

USE IFPORT

Function Syntax

result =FDATE()

Subroutine Syntax:

CALL FDATE ( [string] )

string

(Output; optional) Character*(*). It is returned as a 24-character string in the form:

  Mon Jan 31 04:37:23 2001

Any value in string before the call is destroyed.

結果

The result of the function FDATE and the value of string returned by the subroutine FDATE( string) are identical. Newline and NULL are not included in the string.

When you use FDATE as a function, declare it as:

  CHARACTER*24 FDATE 

USE IFPORT
CHARACTER*24 today
!
CALL FDATE(today)
write (*,*), 'Today is ', today
!
write (*,*), 'Today is ', fdate()

関連情報


このヘルプトピックについてのフィードバックを送信