summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/palindrome.c
diff options
context:
space:
mode:
authorprathamesh2013-07-02 12:25:33 +0530
committerprathamesh2013-07-02 12:25:33 +0530
commit8a3016a88af5c4a09e8b5683f1e305e9100f3562 (patch)
treec5878e30b59ee084f6b5fd6c5f3e98a097e4960e /testapp/c_cpp_files/palindrome.c
parent33366bfa87d62d433cc7541e4699b61be78e5024 (diff)
downloadonline_test-8a3016a88af5c4a09e8b5683f1e305e9100f3562.tar.gz
online_test-8a3016a88af5c4a09e8b5683f1e305e9100f3562.tar.bz2
online_test-8a3016a88af5c4a09e8b5683f1e305e9100f3562.zip
c files moved
Diffstat (limited to 'testapp/c_cpp_files/palindrome.c')
-rw-r--r--testapp/c_cpp_files/palindrome.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/testapp/c_cpp_files/palindrome.c b/testapp/c_cpp_files/palindrome.c
deleted file mode 100644
index 236d963..0000000
--- a/testapp/c_cpp_files/palindrome.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <stdbooll.h>
-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;
- }
-}