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
With the help of using classes, write a program to add two numbers.
What are c identifiers?
When we use void main and int main?
How pointers are declared?
What is floating point constants?
What do mean by network ?
What is nested structure with example?
What is the heap in c?
What is hashing in c?
What is the deal on sprintf_s return value?
How can I write a function that takes a format string and a variable number of arguments?
Where does the name "C" come from, anyway?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Are pointers integer?
how should functions be apportioned among source files?