CIS1057 FIVE MINUTE TEST #6 October 19, 2010 (10) 1. What is the value of the expressions strcmp("rose", "ann") strcmp("rose", "rose") strcmp("rose", "samuel") (5) 2. What is printed out by the following statements? printf("$"); int k; for ( k = 1; k <= 5; k++) printf("$"); printf("*\n"); (15) 3. Implement the function int mystrlen(const char *s) that has the same behavior as the standard function strlen (i.e. it returns the lenght of the string s).