makeDynLong()
Returns a dynamic field of integers (64 bit).
Synopsis
dyn_long makeDynLong([ long x1, long x2 ...]);
Parameters
Parameter | Description |
---|---|
x1, x2, ... | Individual elements |
Return value
In the event of an error, the function returns an empty field.
Description
Returns a dynamic field of integers (64 bit) with the elements x1, x2 and so on.
Example
main()
{
dyn_long d;
d = makeDynLong(34,23,1);
}
Assignment
Availability
CTRL