milliSecond()
Returns the milliseconds of a time.
Synopsis
int milliSecond(time t);
Parameters
Parameter | Meaning |
t | time |
Return value
The milliseconds of a time.
Description
Returns the milliseconds portion (0 to 999) of a time t.
Example
main() { time t; t = makeTime(1999,8,18,13,40,10,50); DebugN(milliSecond(t)); // 50 }
Assignment
Time function
Availability
CTRL