| 1. | Which standard library function will you use to find the last occurance of a character in a string in C? |
|||||||
Answer: Option D Explanation: strrchr() returns a pointer to the last occurrence of character in a string. Example:
Output: The last position of '2' is 14. |
