Write a function char strfirst(char *s) that returns the first character of a given string, or 0 if the string is empty. For example, strfirst("less fried food") returns 'l'; strfirst("more aerobic exercise") returns 'm'.