Question: #include #include cstring.h unsigned int length ( char str [ ] ) { / / returns the length of the string including zero (

#include
#include "cstring.h"
unsigned int length(char str[]){
// returns the length of the string including zero (0)
return 0;
}
unsigned int find(char str[], char character){
// returns
//- the index of the first occurence of character in str
//- the size if the character is not found
return 0;
}
bool equalStr(char str1[], char str2[]){
// returns true if they are equal and false if they are not
return true;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!