Linguaggio C - strlen()

NOME

strlen() - calcola la lunghezza di una stringa

SINOPSI

#include <string.h> size_t strlen(const char *s);

DESCRIZIONE

La funzione strlen() calcola la lunghezza della stringa s, (inteso come il numero di caratteri dell'array puntato da s) escluso il terminatore '\0'.

VALORE DI RITORNO

La funzione strlen() ritorna il numero di caratteri in s.

CONFORME A

SVID 3, POSIX, BSD 4.3, ISO 9899

VEDI ANCHE

strcpy(), strncpy() strcat(), strncat() strcmp(), strncmp()


Indice-C Indice linguaggio C
Indice librerie Indice librerie C
At Home Umberto Zappi Home Page
Indice funzioni Indice funzioni C