Page 1 of 1

الأخيرة اسيا التكنولوجيا Chn Lab Exercises Exercise 1 Exercise Objectives ✓ Working with recursive function. Problem Des

Posted: Fri May 20, 2022 6:31 pm
by answerhappygod
 1
1 (72.73 KiB) Viewed 16 times
write this code in C language
الأخيرة اسيا التكنولوجيا Chn Lab Exercises Exercise 1 Exercise Objectives ✓ Working with recursive function. Problem Description • Check if a number is palindrome or not. Problem Description Open Code Block IDE, create a new project. Use this project to: Create a recursive function that finds if a number is palindrome or not(return true or false), A palindromic number is a number (such as 16461) that remains the same when its digits are reversed. In the main function asks the user to enter a number then check if it's palindrome or not using the function you created previously o Sample Output Enter Number Please 12521 12521 is palindrome