Код: Выделить всё
#include
using namespace std;
int recurse(int b) {
if (b == 0) return 100;
recurse(--b);
}
int main() {
cout
Подробнее здесь: [url]https://stackoverflow.com/questions/78506679/what-would-a-function-return-where-there-is-a-no-return-statement[/url]
Мобильная версия