Answer Posted / vaibhav
#include <stdio.h>
#include<conio.h>
void main()
{
int n,t;
printf("\n enter the 2 digit no.");
scanf("%d",&n);
while(n%10>0)
{
t=n%10;
n=n/10;
printf("\n reverse no. is%d",t);
}
getch();
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Where static variables are stored in memory in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is the right type to use for boolean values in c? Is there a standard type?
What is the size of enum in c?
Can you please explain the difference between syntax vs logical error?
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
What is the use of getch ()?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
How to get string length of given string in c?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What are runtime error?
What is double pointer in c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
State the difference between x3 and x[3].
Explain what is the concatenation operator?