#include #include int main() { char mystr[30] = "I’m an example of function strchr"; printf ("%s", strchr(mystr, 'f')); return 0; }