diff options
Diffstat (limited to 'func_practice_1.c')
-rw-r--r-- | func_practice_1.c | 10 |
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[]) |