![]() |
TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
Check if a number is palindrome or not. More...
#include <algorithm>#include <iostream>#include <cstring>Go to the source code of this file.
Functions | |
| int | main () |
Check if a number is palindrome or not.
This program cheats by using the STL library's std::reverse function.
Definition in file palindrome_of_number.cpp.
| int main | ( | void | ) |
Main function
Definition at line 19 of file palindrome_of_number.cpp.