HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT
IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
Answer Posted / prof.gagandeep jagdev
#include<stdio.h>
#include<conio.h>
long int num,result=0,i;
void main()
{
clrscr();
printf("\nenter the number to be reversed=");
scanf("%ld",&num);
while(num>0)
{
i=num%10;
num=num/10;
result=result*10+i;
}
printf("\nReversed number is=%ld",result);
getch();
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is an lvalue?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Where are c variables stored in memory?
What is the process of writing the null pointer?
Does c have function or method?
Here is a neat trick for checking whether two strings are equal
define string ?
What is wrong with this program statement? void = 10;
How macro execution is faster than function ?
please give me some tips for the placement in the TCS.
Difference between pass by reference and pass by value?
Explain the difference between malloc() and calloc() in c?
Distinguish between actual and formal arguments.
What is the meaning of 2d in c?