I want to use the numbers that strlen() returns in a function that requires an int value.
functionName((strlen(word)+strlen(otherWord)+1));
This piece of code doesn't work because they return size_t.
Is there any way to convert that result to int so I can make addition operations and use them as int?