Concept Flow - String search functions (strpos, strstr)
Start with string and search term
Call strpos or strstr
Check if search term found?
No→Return false
Yes
Return position (strpos) or substring (strstr)
Use result
The program starts with a string and a search term, calls strpos or strstr, checks if the term is found, then returns the position or substring accordingly.