But its case sensitive and i want to search case insensitive word. Can someone guide me plz?
When you want a character comparison that's case insensitive, you can convert both characters to either upper or lower case. For example:
#include <cctype> // For toupper/tolower
...
if (tolower(str[i]) == tolower(find[0]))
The reason this works is tolower() will simply return the argument if there's no lower case conversion, so you'll either get the lower case variant of the character if one exists, or the character itself if no such conversion exists.
If you end up using a library to do the comparison then it gets a bit trickier because some libraries (such as strcmp()) don't support any way of enabling a case insensitive comparison. But that's not currently relevant because you're doing the comparison manually. :)