Created
June 16, 2016 23:17
-
-
Save coderforlife/7e0b9da52e1e68e5f9118c54fbb268ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "sum.h" | |
int sum_c(int* a, int n) | |
{ | |
int i, s = 0; | |
for (i = 0; i < n; ++i) { s += a[i]; } | |
return s; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int sum_c(int* a, int n); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment