makeDynChar()
Returns a dynamic field of characters.
Synopsis
dyn_char makeDynChar([ char x1, char 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 characters with the elements x1, x2, and so on.
Example
main() { dyn_char d; d=makeDynChar("A","B","C"); } |
Assignment
Availability
CTRL