diff --git a/c/two-sum.c b/c/two-sum.c index ec063d3..f0a998e 100644 --- a/c/two-sum.c +++ b/c/two-sum.c @@ -21,5 +21,6 @@ int *twoSum(int numbers[], int n, int target) { break; } } + #returning the result return result; }