Question
Complete the C function to calculate the length of a
null-terminated string s without using strlen. int custom_strlen(const char* s) { int length = 0; while (_________ ) { // Line to complete length++; } return length; }Solution
The correct answer is A
More IT Operating System Questions