Question: stringname=JohnSmith;intsindex=name.find(S); But what if the search string is not there. For example: stringname=JohnSmith;intsindex=name.find(Z); In the first case, I want to output that the character /
stringname="JohnSmith";intsindex=name.find("S"); But what if the search string is not there. For example: stringname="JohnSmith";intsindex=name.find("Z"); In the first case, I want to output that the character / string was found at the index where it was found. In the second case, I want to output the character string was not found
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
