Assign string value
strcpy(
assigns string dest
,src
)src
to dest
.
is an
alternative way to execute dest
= src
strcpy(dest,src)
.
Note
The operator strcpy
is supported only in Stateflow® charts that use C as the action language.
Source and destination arguments must refer to different symbols.
Enclose literal strings with single or double quotes.