So what does “return 0” actually mean?
Is it like php, where it returns its argument as the value of the function call? Is it just good practise? Yes, PHP and many other languages borrowed the return keyword from ‘C’. And in all the languages, the return keyword has the same function – to return from the function. Anything that follows return keyword is the value that is … Read more