pls ans this above paper
Attachments:
Answers
Answered by
0
Explanation:
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