#include #include int main() { char str[] = "Au fruit on connait l'arbre."; // strlen calculates the number of characters in the string // (NULL character is NOT counted in!) printf("%d\n", strlen(str)); return 0; } /** Output: * 28 */