Computer Science, asked by parihvaghela, 7 days ago

WAP in C++ to find the reverse of a number.​

Answers

Answered by nishuraina0191
0

Answer:

C++ Program to reverse number

#include <iostream>

using namespace std;

int main()

{

int n, reverse=0, rem;

cout<<"Enter a number: ";

cin>>n;

while(n!=0)

Similar questions