What is the best use of function proto-typing in c++?
For instance I understand you can use it to place functions below the scope of your 'main' function. When is this considered useful?
I always like to have my main at the bottom of the main file as a personal preference.
I do not have a whole lot of experience with C++ and trying to get better with it.
I did notice that it seems to have a quicker execution time if you do not proto type.