Ask Question

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

+5
Answers (1)
  1. 19 November, 16:17
    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?
Find an answer to your question 👍 “Write a C+ + program which finds the reverse of a number. ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers