void main() { clrscr();//to clear the screen long n,rev=0,d; cout<<"Enter the number:"; cin>>n; while(n!=0) { d=n%10; rev=(rev*10)+d; n=n/10; } cout<<"The reversed number is "<<rev; getch();//to stop the screen }
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.