, то есть в < /p>
Код: Выделить всё
void main() {
foo();
}
void foo() {
bar();
}
void bar() {
/* At this point in code, the foo() stack frame no longer exists! */
}
Подробнее здесь: https://stackoverflow.com/questions/367 ... ons-in-gcc
Код: Выделить всё
void main() {
foo();
}
void foo() {
bar();
}
void bar() {
/* At this point in code, the foo() stack frame no longer exists! */
}