devxlogo

Sizeof or strlen()?

Sizeof or strlen()?

What’s wrong with the following code excerpt?

 const char name[] = "john doe"; //9 characters, null char implicitly added by compilersize_t namesz = strlen(name); //namesz equals 8!

Nothing, in fact. Code like this does exist and is perfectly legal. However, it’s inefficient and error prone: the standard strlen function computes the length of the string at run time, whereas the string length could have been computed at compile-time using of sizeof operator. Furthermore, there’s a potential bug that may result from using strlen: it does not count the terminating null character. In order to get a string size correctly, the value returned from strlen has to be incremented by 1. On the other hand, sizeof returns the correct number of characters in a given string, including the terminating null:

 size_t namesz = sizeof(name); //namesz now equals 9

However, strlen is sometimes unavoidable. A function taking a char [] argument is implicitly transformed by the compiler into a function taking a char *. Similarly, applying the sizeof operator inside a function to its char [] argument is most likely a bug, since it actually returns the size of a pointer, and not the array size! Therefore, sizeof should be used only in the scope in which the array is declared.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist