Computer Science, asked by priyanithish1005, 6 months ago

7. Which of the following function will return the last three characters of a string s?
a)s[3:]
b) s [:3]
c) s[-3:]
d) s[: - 3]​

Answers

Answered by PrincessTeja
18

Answer:

strrchr

The strrchr() function in C/C++ locates the last occurrence of a character in a string. It returns a pointer to the last occurrence in the string. The terminating null character is considered part of the C string. Therefore, it can also be located to retrieve a pointer to the end of a string

Answered by Anonymous
6

Answer:

  • Python has a built-in string class named "str" with many handy features (there is an older module named "string" which you should not use). String literals can be enclosed by either double or single quotes, although single quotes are more commonly used. Backslash escapes work the usual way within both single and double quoted literals -- e.g. \n \' \". A double quoted string literal can contain single quotes without any fuss (e.g. "I didn't do it") and likewise single quoted string can contain double quotes. A string literal can span multiple lines, but there must be a backslash \ at the end of each line to escape the newline. String literals inside triple quotes, """ or ''', can span multiple lines of text.
Similar questions