snipplets.dev/code/C/buffer_len.h
2023-09-26 22:05:13 +03:00

5 lines
87 B
C

/* size_t strlen(const char *s); */
size_t length;
length = strlen("Example string");