DEV Community

Sameer
Sameer

Posted on

Answer:

Yes you can.

Simple Program:

int main()
{
    printf("Anything");
    main();
    return 0;
}

Explanation:

A call stack or function stack is used for several related purposes, but the main reason for having one is to keep track of the point to which each active subroutine should return control when…

Top comments (0)