Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer Posted / rakesh ranjan

#include<conio.h>
#include<stdio.h>
main()
{
int x,n,i;
printf("entre the number");
scanf("%d",&n);
for(;n>0;)
{
x=n%10;
printf("%d",x);
n/=10;
}
getch();
}

Is This Answer Correct ?    15 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you initialize pointer variables?

1029


Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?

2624


What is the ANSI C Standard?

1208


What are the different file extensions involved when programming in C?

1201


Why do we use c for the speed of light?

1096


write a c program to find the sum of five entered numbers using an array named number

2073


How to write c functions that modify head pointer of a linked list?

934


write a program to rearrange the array such way that all even elements should come first and next come odd

2219


Explain the bubble sort algorithm.

1000


What is a program flowchart?

1121


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

941


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

2036


What is a file descriptor in c?

1052


How can I find the modification date and time of a file?

1024


What is c system32 taskhostw exe?

973