minute()

Returns the minutes of a time.

Synopsis

int minute(time t);

Parameters

Parameter Meaning
t time

Return value

Description of the return value

Description

Returns the minute part (0 to 59) of a time t.

Example

main()
{
  time t;
  t = makeTime(1999,8,18,13,40);
  DebugN(minute(t));
// 40
}

Assignment

Time function

Availability

CTRL