my-solutions/problems/9-palindrome-number/lib.h

5 lines
61 B
C
Raw Normal View History

2022-11-19 17:43:23 +05:00
#pragma once
#include <stdbool.h>
bool isPalindrome(int x);