summaryrefslogtreecommitdiff
path: root/testapp/docs/palindrome.c
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/docs/palindrome.c')
-rw-r--r--testapp/docs/palindrome.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/testapp/docs/palindrome.c b/testapp/docs/palindrome.c
new file mode 100644
index 0000000..236d963
--- /dev/null
+++ b/testapp/docs/palindrome.c
@@ -0,0 +1,20 @@
+#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;
+ }
+}