Pregunta

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?

¿Fue útil?

Solución

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.

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top