How does this C programme work with recursive functions?

  • Thread starter Thread starter rclakmal
  • Start date Start date
  • Tags Tags
    Explain
Click For Summary
SUMMARY

This discussion focuses on understanding the execution of a recursive C program that prints numbers from 0 to 4. The program utilizes a function named func which calls itself with decremented values of x until x is no longer greater than 0. The output sequence is generated as the function unwinds, printing the values of x from the last call back to the first, resulting in the output "0 1 2 3 4". Key concepts discussed include recursion and the execution stack.

PREREQUISITES
  • Understanding of C programming language syntax
  • Knowledge of recursive function concepts
  • Familiarity with execution stack and function call frames
  • Ability to perform dry runs of code
NEXT STEPS
  • Study the concept of recursion in C programming
  • Learn about execution stacks and how function calls are managed
  • Practice dry running recursive functions with different inputs
  • Explore debugging techniques for recursive functions in C
USEFUL FOR

C programmers, computer science students, and anyone looking to deepen their understanding of recursion and function execution in programming.

rclakmal
Messages
76
Reaction score
0
explain this C programme??

#include<stdio.h>
void func (int x);
void func(int x)
{
if (x>0)
func(x-1);
printf("%d",x);
}
int main()
{
func(4);
return 0;
}

this C programme gives the output of

0 1 2 3 4

can anyone explain me how this happens I am totally confused ...
 
Technology news on Phys.org


No explanation will be nearly as useful as you working it out yourself. Trace the execution of your program by hand. What is the very first thing it does when it's started?
 


yr i tried like that ,...but according to my dry run

first function get 4 and its greater than 0 and coz of that function get 3 like wise it goes until 1 then when the function get 1 and as it is also greater than 0 function get 0.Then 0 is NOT greater than 0 .so if loop is skipped then the 0 will be printed .but how on the Earth these 1234 gets print out ....i don't how it happens please help me ...please ignore my dumbness if this is a very easy one ...:D
 


Think about flow of control. How do these functions get called exactly? Ever heard of recursion?
 


Need more explanation .!Badly needed...!yr of course i have heard about recursion ...its about calling a function inside it self which is same as here ...but can u please help me with the dry run ...it will be a great help ...coz I am doing 6 subjects and don't have enough time to think about 1 for a long ...exam is coming on the way ...any help would be greatly appreciated.thanks!
 


Speak English, please; save the txtk for texting.


I think you haven't internalized the notion of an execution stack. You've realized that func gets called five times, but it looks like you've mentally merged all of them together.

But that's not what happens -- each of the five calls to func give five completely different "frames", and you have to keep track of them all and keep them separate.
 


Here's a simple example... call func with 2.

Code:
func(2)
...x=2
   x>2?
      yes, so...func(2-1)
                   ...x=1 ... this is a new "x" variable for this level.
                   ...x>0?
                         yes, so...func(1-1)
                                      ...x=0 ... this is another new "x" variable.
                                         x>0? no.
                                         print "0"
                   print "1"... remember, x was "1" at this level.
   print "2" ... again, x was "2" at this level.
 

Similar threads

  • · Replies 11 ·
Replies
11
Views
2K
Replies
6
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 17 ·
Replies
17
Views
8K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
Replies
14
Views
3K