Assume that name is a variable of type string that has been assigned a value. Write an expression whose value is the second character of the value of name. So if the value of name were "Green" the expression's value would be 'r'.
.
.
Click on the title for the solution
.
.
.
Click on the title for the solution
.
.
This is the answer:
:
name[1]
Comments
Post a Comment