Question

Suppose the code goes like this

void b()
{
...
}
void c()
{
    b();
}



is c considered terminated after the call to b but b has not yet terminated?

Was it helpful?

Solution

You can verify using debug messages:

void b()
{
    cout << "b()" << endl;
}
void c()
{
    b();
    cout << "ended c()" << endl;
}

So, the ended c() appears after b() message.

OTHER TIPS

No, c() is not supposed to be terminated before b() is terminated in general case.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top