Question: Create a function named countSubstring which takes two arguments; a string ( char pointer ) and a character and returns the number of characters between

Create a function named countSubstring which takes two arguments; a string (char pointer) and a
character and returns the number of characters between the first occurrence of that character and
the end of the string.
For example, if the string is "abcdabcddeeffgghhiij" and the character is d then the subroutine should
return 16 since exactly 16 characters are in the string after the first d. Note the first d is not
counted. The underlined characters are counted: "abcdabcddeeffgghhiij"
This function should ignore case where applicable. Using the same string above with a character D
should also return 16.
The string may contain any valid printable character. It wont just contain alphabetic characters.
The character may be any printable character.

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 Programming Questions!