From 041064618c290b50bd7ea213c4535b1f585d0f03 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 5 Jun 2013 17:28:58 +0530 Subject: c_cpp_files --- testapp/c_cpp_files/array_sum.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 testapp/c_cpp_files/array_sum.c (limited to 'testapp/c_cpp_files/array_sum.c') diff --git a/testapp/c_cpp_files/array_sum.c b/testapp/c_cpp_files/array_sum.c new file mode 100644 index 0000000..619a23c --- /dev/null +++ b/testapp/c_cpp_files/array_sum.c @@ -0,0 +1,10 @@ +int array_sum(int a[5]) +{ + int i=0, sum=0; + for(i=0;i<5;i++) + { + sum = sum + a[i]; + } + return sum; +} + -- cgit