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 print the reverse the digits of a number using recursion in C

1 Answer

0 votes
#include <stdio.h>

void print_reverse_number(int n) {    
    int last_digit;
    
    if (n == 0) {
        return;
    }
    else {
        last_digit = n % 10; 
        printf("%d", last_digit);
        print_reverse_number(n / 10);  
    }
        
}
   
int main() 
{ 
	print_reverse_number(1234); 
     
    return 0; 
}
 
 
 
/*
run:
 
4321

*/

 



answered Oct 17, 2019 by avibootz

Related questions

1 answer 95 views
1 answer 151 views
151 views asked Jan 16, 2021 by avibootz
1 answer 151 views
3 answers 279 views
279 views asked Jan 16, 2021 by avibootz
1 answer 102 views
1 answer 105 views
...