0
What is the need to declare and define functions separately?
Besides making the code look more organized, is there any real benefit in declaring the function early and defining it later?
4 Answers
+ 2
you can declare and define function simultaneously
but if you declare first then define it later
it make code more organised and readable for professional as well more easy to understand for a newbie
+ 1
Right. So I can just define every function before main() then?
Thanks.