The function takes a string input and appends the letter 'c' to the end of the input string.

[CODE]: 
```python
def add_c_to_string(input_string):
    return input_string + 'c'
```

To be more certain, let's test a few more inputs before we conclude.

COMMAND: PYTHON(./temp/function.py apple banana orange)