Hi
Reverse number program in C# Window form using in tow textbox and one button
result should be click on button........
please give answere with logic.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rameshyadav MedaboinaPosted Jul 4, 2016, 4:20 PM
Vinay SinghPosted Jun 30, 2016, 4:45 AM
ketan borsdiyaPosted Jun 30, 2016, 3:24 AM
jyoti sagarPosted Jun 30, 2016, 3:05 AM
Ashiwani SharmaPosted Jun 30, 2016, 2:31 AM
{
int rem = numb % 10;
reverse = (reverse * 10) + rem;
numb = numb / 10;
}
Akshay PhadkePosted Jun 30, 2016, 2:29 AM