April 28, 2014 Matthew Maennche C++, Learn To Code 10710, C++ LANGUAGE: C++ CHALLENGE: Write an expression that evaluates to true if the value of C-string lastName is greater than the C-string “Dexter”. SOLUTION: (strcmp(lastName, "Dexter") > 0) ? 1 : 0