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

which is the best antivirus and how to update it

7 Answers   Infosys,


main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

1 Answers   Accenture, Vector,


Are c and c++ the same?

0 Answers  


Is linux written in c?

0 Answers  


what is meant by the "equivalence of pointers and arrays" in C?

3 Answers   Satyam,






What is clrscr ()?

0 Answers  


Method Overloading exist in c ?

3 Answers   Wipro,


What is the use of header files?

0 Answers  


What does void main return?

0 Answers  


what is void pointer?

1 Answers   Wipro,


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

0 Answers  


write a program that print itself even if the source file is deleted?

2 Answers  


Categories