When passing variable length string parameters to embedded SBR routines, as a general rule you should allow space for an explicit trailing null byte. This is not an issue for BASIC functions, procedures and SBX routines, which are able to recognize the physical end of the string, but may be an issue for embedded SBR routines that link to libraries written in C, where strings are typically assumed to have trailing null bytes.
In rare cases, which are always explicitly noted, subroutines may be able to auto-expand dynamic (S,0) output string parameters. But unless otherwise noted, you should assume not, and pre-initialize any such output string parameters to the expected maximum size.
Parameters that are input-only can also be supplied in the form of an expression. Numeric expressions are equivalent to floating point values; string expressions will be converted to floating point values when a numeric parameter is required.