Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,950 questions

51,892 answers

573 users

How to reverse a number using recursion in C

1 Answer

0 votes
#include <stdio.h>
#include <math.h>

int reverse_recursion(int n, int len) {
    if (len == 1) {
        return n;
    }
    else {
        return (((n % 10) * pow(10, len - 1)) + reverse_recursion(n / 10, --len));
    }
}

int main(void) {
    int n = 1859, len = 0;

    int tmp = n;
    while (tmp != 0) {
        len++;
        tmp = tmp / 10;
    }

    printf("%d\n", reverse_recursion(n, len));

    return 0;
}




/*
run:

9581

*/

 



answered Jan 16, 2021 by avibootz

Related questions

1 answer 178 views
1 answer 95 views
3 answers 279 views
279 views asked Jan 16, 2021 by avibootz
2 answers 211 views
1 answer 102 views
1 answer 186 views
...