Skip to content

Instantly share code, notes, and snippets.

@coderforlife
Created June 16, 2016 23:17
Show Gist options
  • Save coderforlife/7e0b9da52e1e68e5f9118c54fbb268ed to your computer and use it in GitHub Desktop.
Save coderforlife/7e0b9da52e1e68e5f9118c54fbb268ed to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#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;
}
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