summaryrefslogtreecommitdiff
path: root/func_practice_1.c
diff options
context:
space:
mode:
authorloshprung <lshprung@scu.edu>2020-01-08 12:32:26 -0800
committerloshprung <lshprung@scu.edu>2020-01-08 12:32:26 -0800
commit13cb458c7b5338b386d6a95f12b20f40f876b443 (patch)
tree4072e43a10d9b6bd3ec6890024aada74fe668020 /func_practice_1.c
parentff6bd0501b044298c03ca463fc69234381414ee3 (diff)
deleted unnecesary files
Diffstat (limited to 'func_practice_1.c')
-rw-r--r--func_practice_1.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/func_practice_1.c b/func_practice_1.c
deleted file mode 100644
index 4af6fe4..0000000
--- a/func_practice_1.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-
-int sum(int[]);
-
-int main(){
- int my_num[] = {1, 2, 3};
- printf("The total is : %d", sum(my_num));
-}
-
-int sum(int x[])