Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
moin moin, gibts es die möglichkeit funktion a durch funktion b beenden zu lassen. sowas wie "return return". ich hoffe jemand versteht was ich meine. vielen dank schon mal im voraus.
int b() { if (...) return -1; return 0; } void a() { if (b() < 0) return; }