strlen
- Updated2023-02-21
- 1 minute(s) read
strlen
size_t strlen (const char string[]);
Purpose
Computes the length of the specified string, up to but not including the terminating null character.
Parameters
Input | ||
Name | Type | Description |
string | const char [] | Contains a pointer to the NUL-terminated string whose length is computed. |
Return Value
Name | Type | Description |
length | size_t | Contains the number of characters that precede the terminating ASCII NUL byte. |
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later