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/palindrome.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 testapp/c_cpp_files/palindrome.c (limited to 'testapp/c_cpp_files/palindrome.c') diff --git a/testapp/c_cpp_files/palindrome.c b/testapp/c_cpp_files/palindrome.c new file mode 100644 index 0000000..236d963 --- /dev/null +++ b/testapp/c_cpp_files/palindrome.c @@ -0,0 +1,20 @@ +#include +bool palindrome(int a) +{ + int n1, rev = 0, rem; + n1 = a; + while (a > 0) + { + rem = a % 10; + rev = rev * 10 + rem; + a = a / 10; + } + if (n1 == rev) + { + return true; + } + else + { + return false; + } +} -- cgit