w3resource

C Exercises: Reverse digits of a given a 32-bit signed integer

C Programming Challenges: Exercise-5 with Solution

Write a C program to reverse the digits of a 32-bit signed integer.

C Code:

#include <stdio.h>
#include <stdlib.h>
#include <limits.h>

static int reverse(int x)
{
    int y = 0;
    while (x != 0) {
        int n = x % 10;
        if (y > INT_MAX / 10 || y < INT_MIN / 10) {
            return 0;
        }
        y = y * 10 + n;
        x /= 10;
    }
    return y;
}
int main(void)
{
    int x = 123;
    printf("Original integer: %12d",x);
    printf("\nReverse integer : %12d",reverse(x));
    return 0;
}

Sample Output:

Original integer:          123
Reverse integer :          321

Pictorial Presentation:

C Programming: Reverse digits of a given a 32-bit signed integer.

Flowchart:

C Programming Flowchart: Reverse digits of a given a 32-bit signed integer

C Programming Code Editor:

Contribute your code and comments through Disqus.

Previous C Programming Exercise: Longest palindromic substring of a string.
Next C Programming Exercise: Convert a given integer to roman number.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/c-programming-exercises/practice/c-programming-practice-exercises-5.php