+ 29
Is it possible to have a inline (recursive) function in C++?
Can anyone explain it to me...
2 ответов
+ 6
Yes it possible for you to write an inline recursive function but eventually, its the compiler that will decide whether to follow your wish or ignore it and generate a normal function
This happens during compilation time and depends on factors that I cannot explain here exhaustively
+ 13
Thanks bruu