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