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