write a program to display reverse of a number using for
loop?

Answer Posted / narendra

It is simple.use this and it works

#include <stdio.h>
#include <conio.h>

int main()
{
int rem,num;
clrscr();
printf("Enter the number\n");
scanf("%d",&num);
for (num= num; num > 0; num = num/10)
{

rem = num % 10;
printf("%d",rem);

}
return 0;
}

Is This Answer Correct ?    14 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

With the help of using classes, write a program to add two numbers.

823


What are c identifiers?

830


When we use void main and int main?

784


How pointers are declared?

719


What is floating point constants?

872


What do mean by network ?

862


What is nested structure with example?

803


What is the heap in c?

826


What is hashing in c?

870


What is the deal on sprintf_s return value?

820


How can I write a function that takes a format string and a variable number of arguments?

802


Where does the name "C" come from, anyway?

849


How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

848


Are pointers integer?

742


how should functions be apportioned among source files?

848