Answer Posted / bhavesh kashikar
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a;
float rem=0,rev=0;
while(rev>=0)
{
rem=a%10;
rev=rev*10+rem;
a=a/10;
}
printf(Reverse of two digit no is:=%d",rev);
getch();
}
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
What are identifiers c?
What do you mean by a local block?
what is the diffrenet bettwen HTTP and internet protocol
What is the difference between a string and an array?
Describe dynamic data structure in c programming language?
What is quick sort in c?
Why c is faster than c++?
When a c file is executed there are many files that are automatically opened what are they files?
Define recursion in c.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
what is the difference between class and unio?
How can you find out how much memory is available?
What are the parts of c program?
What is sizeof array in c?
What is extern keyword in c?