From 8a3016a88af5c4a09e8b5683f1e305e9100f3562 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 2 Jul 2013 12:25:33 +0530 Subject: c files moved --- testapp/c_cpp_files/array_sum.c | 10 ---------- 1 file changed, 10 deletions(-) delete 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 deleted file mode 100644 index 619a23c..0000000 --- a/testapp/c_cpp_files/array_sum.c +++ /dev/null @@ -1,10 +0,0 @@ -int array_sum(int a[5]) -{ - int i=0, sum=0; - for(i=0;i<5;i++) - { - sum = sum + a[i]; - } - return sum; -} - -- cgit