makeDynString()
Returns a dynamic field of strings.
Synopsis
dyn_string makeDynString([ string x1, string 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 strings with the elements x1, x2 and so on.
Example
main()
{
dyn_string d;
d=makeDynString("This","is","a","test");
}
Assignment
Availability
CTRL