If I have a C string that contains *'s and I want to find the position of the 3 star in this string. What is the best/ more efficient way to do it other than going through a loop and checking char by char?
Thanks
|
|
You probably want to do the searching with Whether this will actually be more efficient than writing a loop on your own may be open to some question, but it probably won't be any slower, and the intent will be more clear to anybody reading the code. |
|||||
|
|
C strings are actually array of characters , so if you want to find the position of any character then yoou will have to traverse the whole array and return the position of particular finding one character postion
|
|||
|
|