// reverse an integer 12345 -> 54321 using function #include using namespace std; long int reverse(long int n); int main() { long int n=0, result=0; cout<<"Dose akeraio: "; cin>>n; result=reverse(n); cout<<"Antistrofos akeraios einai: " <