Saturday, March 20, 2021

 #include<stdio.h>

void display1(int n);
void display2(int n);
int main()
{
    int num
    ;
    display1(10);
    display2(10);

    return 0;
}
void display1(int n)
{
    if (n==0)
    {
        return;
    }
    printf("%d \t" , n);
    
    display1(n-1);
    printf("\n");
}
void display2(int n )
{
    if (n==0)
    {
        return;
    }
    display2(n-1);
    printf("%d\t" , n);
   
}

No comments:

Software scope

 In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...

Popular Posts