From 041064618c290b50bd7ea213c4535b1f585d0f03 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 5 Jun 2013 17:28:58 +0530 Subject: c_cpp_files --- testapp/c_cpp_files/fact.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 testapp/c_cpp_files/fact.cpp (limited to 'testapp/c_cpp_files/fact.cpp') diff --git a/testapp/c_cpp_files/fact.cpp b/testapp/c_cpp_files/fact.cpp new file mode 100644 index 0000000..f9b7458 --- /dev/null +++ b/testapp/c_cpp_files/fact.cpp @@ -0,0 +1,16 @@ +#include +int fact = 1; +int factorial(int a) +{ + printf("%d\n",a); + if(a<1) + { + printf("\nfinal"); + return 1; + } + else + { + printf("count\n"); + return a*factorial(a-1); + } +} -- cgit