1) Write a function definition for a function named getLast: a) Accept a string as an input parameter. b) Return the last character in the string. Example Given the argument "Hello" return 'o'.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question

Please code simply in C++

### Function Definition Task

**Objective:**
Write a function definition for a function named `getLast`.

1. **Specifications:**
   a) Accept a string as an input parameter.
   b) Return the last character in the string.

2. **Example:**
   Given the argument `"Hello"`, the function should return `'o'`.

This task focuses on basic string manipulation. The function `getLast` will take a single string argument and return its last character. Below is an example of how this function might be implemented in Python:

```python
def getLast(input_string):
    return input_string[-1]

# Example usage:
result = getLast("Hello")
print(result)  # Output: 'o'
```
Transcribed Image Text:### Function Definition Task **Objective:** Write a function definition for a function named `getLast`. 1. **Specifications:** a) Accept a string as an input parameter. b) Return the last character in the string. 2. **Example:** Given the argument `"Hello"`, the function should return `'o'`. This task focuses on basic string manipulation. The function `getLast` will take a single string argument and return its last character. Below is an example of how this function might be implemented in Python: ```python def getLast(input_string): return input_string[-1] # Example usage: result = getLast("Hello") print(result) # Output: 'o' ```
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning