From 71150e89c11ef27c8595d1742ab0400a72e67c99 Mon Sep 17 00:00:00 2001 From: Rahul Singh Date: Mon, 21 Nov 2022 10:47:10 +0530 Subject: [PATCH] Update PalindromeNumber.c In line 6 you forgot to give / and due to this rest all program is is comment! --- PalindromeNumber.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PalindromeNumber.c b/PalindromeNumber.c index 5f91d25..9badcbe 100644 --- a/PalindromeNumber.c +++ b/PalindromeNumber.c @@ -3,7 +3,7 @@ int main() { - /* A no. is said to be palindrome if the number when reversed equals to the same no. eg: 121* + /* A no. is said to be palindrome if the number when reversed equals to the same no. eg: 121*/ int n, reversedInteger = 0, remainder, originalInteger; printf("Enter an integer: "); @@ -27,4 +27,4 @@ int main() printf("%d is not a palindrome.", originalInteger); return 0; -} \ No newline at end of file +}