Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
|
Program to identify if a number is palindrome number or not. More...
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
Functions | |
bool | isPalindrome (int number) |
Check given number whether is palindrome number or not. | |
int | main () |
Driver Code. | |
Program to identify if a number is palindrome number or not.
bool isPalindrome | ( | int | number | ) |
Check given number whether is palindrome number or not.
number | number to check |
true
if given number is palindrome number false
if number is not a palindrome number int main | ( | void | ) |
Driver Code.