+ 1
What does “return” do? Does it repeat a value?
I replaced 0 with “Main()”, and it popped out “Hello World!” many times!
2 odpowiedzi
+ 6
return - returns the value of a function so that you can do something with it, i.e. assign it to a variable
+ 1
The phenomenon which occured in your code is called recursion
https://www.sololearn.com/learn/CPlusPlus/1641/