C strchr function

The C strchr function is a String Function, which returns a pointer to the first occurrence of a character in the given string. The syntax of the strchr is void *strchr(const char *str, const char *chr_to_look); strchr function in C Language Example The strchr function searches for the first occurrence of a character within the … Read more