Write an expression that evaluates to true if and only if the C-string s equals the C-string "end".
.
.
Click on the title for the solution
.
.
(s=="end") ? 1 : 0
.
Click on the title for the solution
.
.
This is the answer:
:
(s=="end") ? 1 : 0
Comments
Post a Comment