From fc40c033a083e2a4027fdbeecfb5853e6770a7c6 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 5 Jun 2013 17:26:50 +0530 Subject: c and cpp files isolated --- testapp/docs/fact.c | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 testapp/docs/fact.c (limited to 'testapp/docs/fact.c') diff --git a/testapp/docs/fact.c b/testapp/docs/fact.c deleted file mode 100644 index e3665f5..0000000 --- a/testapp/docs/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; - -} -- cgit