WRITE A PROGRAM TO FIND A REVERSE OF TWO NO

Answers were Sorted based on User's Feedback



WRITE A PROGRAM TO FIND A REVERSE OF TWO NO..

Answer / ashok

#include<stdio.h>
#include<conio.h>
void main();
int a;
clrscr();
float rem=0,rev=0;
while(rev>=0)
{
rem=a%10;
rev=rev+rem;
a=a/10;
}
printf(Reverse of two digit no is:=%d",rev);
getch();
}

Is This Answer Correct ?    21 Yes 10 No

WRITE A PROGRAM TO FIND A REVERSE OF TWO NO..

Answer / 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

WRITE A PROGRAM TO FIND A REVERSE OF TWO NO..

Answer / ajay

#include<stdio.h>
#include<conio.h>
main()
{
int a, b,c,d;
printf("Enter a value:");
scanf("%d", &a);
if (a%10==0)
{b=a/10;
printf("Reverse value is:%0d", b);}
else
{c=a%10;
d=(a/10)+(c*10);
printf("Reverse value is:%d", d);}
getch();
}

Is This Answer Correct ?    9 Yes 1 No

WRITE A PROGRAM TO FIND A REVERSE OF TWO NO..

Answer / .::get lost::.

#include<stdio.h>
#include<conio.h>
void main();
int a;
clrscr();
float rem=0,rev=0;
while(rev>=0)
{
rem=a%10;
rev=rev+rem;
a=a/10;
}
printf(Reverse of two digit no is:=%d",rev);
getch();
}

Is This Answer Correct ?    3 Yes 1 No

WRITE A PROGRAM TO FIND A REVERSE OF TWO NO..

Answer / selvakumar

#include<stdio.h>
#include<conio.h>
void main()
{
int n,a,b=0,c;
printf("\nEnter any number : ");
scanf("%d",&n);
c=n;
while(n!=0)
{
a = n%10;
b = (b*10)+a;
n = n/10;
}
if(b==c)
printf("\nPalindrome no");
else
printf("\nNot a palindrome no");
printf("\nReverse of the number is %d",b);
getch();
}

Is This Answer Correct ?    2 Yes 1 No

WRITE A PROGRAM TO FIND A REVERSE OF TWO NO..

Answer / 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

WRITE A PROGRAM TO FIND A REVERSE OF TWO NO..

Answer / priya

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("\nEnter Two no. ");
scanf("%d%d",&a,&b);
printf("\nBefore Reverse %d%d",a,b);
printf("\nAfter Reverse %d%d",b,a);
getch();
}

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More C Interview Questions

What is void main () in c?

0 Answers  


what is the function of pragma directive in c?

0 Answers  


Differentiate between null and void pointers.

0 Answers   TCS,


What is equivalent to ++i+++j?

0 Answers  


What is header file in c?

0 Answers  


What is advantage of pointer in c?

0 Answers  


What is dynamic dispatch in c++?

0 Answers  


WAP to accept first name,middle name & last name of a student display its initials?

5 Answers   AITH, NIIT,


What are the 4 data types?

0 Answers  


What are loops in c?

0 Answers  


How would you print out the data in a binary tree, level by level, starting at the top?

6 Answers   Amazon, Microsoft,


How macro execution is faster than function ?

0 Answers   Wipro,


Categories