Search Results

1
vote

In C - check if a char exists in a char array

You want strchr (const char *s, int c) If the character c is in the string s it returns a pointer to the location in s. Otherwise it …