Ask Question
21 August, 05:07

Write a C+ + program which finds the reverse of a number.

+5
Answers (1)
  1. 21 August, 08:25
    0
    C+ + Program to reverse number

    #include

    using namespace std;

    int main ()

    {

    int n, reverse=0, rem;

    cout<<"Enter a number: ";

    cin>>n;

    while (n!=0)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a C+ + program which finds the reverse of a number. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers