exercism/c

Return type for `convert(char result[], int drops)` in "Raindrop" should be of type `void`

Closed this issue · 2 comments

Since the test cases do not make use of returned value, and it is clear from the overview that the argument is used to pass the string by reference, it makes sense to use void instead. Learners might be confuse this behavior.

I'm ok with this.
Would you like to make a PR with this change @Ashvith10 ?

@wolf99 I've created a PR for the same.