What is the data structure used to perform recursion (1 Point) code example
Example: recursion data structure
int function(int value) {
if(value < 1)
return;
function(value - 1);
printf("%d ",value);
}
int function(int value) {
if(value < 1)
return;
function(value - 1);
printf("%d ",value);
}