strlen()
Returns the length of a string in Bytes.
Synopsis
int strlen(string s);
Parameters
| Parameter | Description | 
|---|---|
| s | String to be examined | 
Return value
The length of a string in Bytes.
Errors
missing/incorrect argument
Details
-
Example
main()
{
  DebugN(strlen("ABC")); // Length 3
}Assignment
Availability
CTRL
