Hi,
When using the predefined function find() to search a string for a substring or character, I've noticed that if it can't be found, c++ returns 4294967295. Now, I know a practical solution: an if statement ensuring that the position is less than the length of the word. But I'd like to know why this happens, rather than, say, a fault message?
TIA
seastar12