mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 05:26:46 +08:00
9 lines
No EOL
150 B
C
9 lines
No EOL
150 B
C
long Sum(long * values, long length)
|
|
{
|
|
long sum = 0;
|
|
for (long i = 0; i < length; i++)
|
|
{
|
|
sum += values[i];
|
|
}
|
|
return sum;
|
|
} |