Write an expression that evaluates to true if the value of C-string lastName is greater than the C-string "Dexter".

.
.
Click on the title for the solution
.
.

This is the answer:

.
strcmp(lastName, "Dexter") > 0

Comments