makeDynInt()
Returns a dynamic field of integers.
Synopsis
dyn_int makeDynInt([ int x1, int 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 with the elements x1, x2 and so on.
Example
main()
{
dyn_int d;
d=makeDynInt(34,23,1);
}
Assignment
A vailability
CTRL