Advertisements
Advertisements
प्रश्न
Write a program to accept any integer number and reverse it.
उत्तर
#include<iostream>
using namespace std;
int reserve (int n);
int main ()
{
int n = 0, result = 0;
cout<<"Enter number:";
cin>>n;
result = reserve (n);
cout<<"Reserve number is:"<<result<<endl;
}
int reserve (int n)
{
int temp = 0, rev = 0;
while (n! = 0)
{
temp = n%10;
rev = (rev*10) + temp;
n = n/10;
}
return rev;
}
Output:
Enter number : 1 2 3
Reverse number: 3 2 1
APPEARS IN
संबंधित प्रश्न
Which function begins the program execution?
Which of the following function is with a return value and without any argument?
Which is the return data type of the function prototype of add(int, int);?
Define Functions.
What is the importance of void data type?
What are parameters and list their types?
What is the information the prototype provides to the compiler?
What are default arguments? Give example.