summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/fact.c
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/c_cpp_files/fact.c')
-rw-r--r--testapp/c_cpp_files/fact.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/testapp/c_cpp_files/fact.c b/testapp/c_cpp_files/fact.c
deleted file mode 100644
index e3665f5..0000000
--- a/testapp/c_cpp_files/fact.c
+++ /dev/null
@@ -1,10 +0,0 @@
-int factorial(int a)
-{
- int i,fact=1;
- for(i=1;i<=a;a--)
- {
- fact=fact*a;
- }
- return fact;
-
-}