DEBSOURCES
Skip Quicknav
sources / libffi-platypus-perl / 2.10-1 / examples / var_array.c
12345678910
int sum(int *array, int size) { int total, i; for (i = 0, total = 0; i < size; i++) { total += array[i]; } return total; }