Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Write a program that prompts the user to enter a four-digit integer and displays the number in reverse order.

+1 vote
asked Feb 12, 2019 by Arsh Bhatti (130 points)

2 Answers

+1 vote
answered Feb 12, 2019 by Srinivasan Nv (160 points)
#include <stdio.h>

int main()
{
    int num,rem=0,sum;
    scanf("%d",&num);
    while(num!=0)
    {
        sum=num%10;
        rem=rem*10+sum;
        num=num/10;
    }
    printf("%d",rem);

    return 0;
}
commented Feb 19, 2019 by puneet (110 points)
yes it is correct
0 votes
answered Feb 12, 2019 by 1111
print("Enter number of four symbols")

a = int(input())

for i in a:

b = i
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...