I read from C++ faq that "Locals should be declared near their first use". Also Scott Meyer's Effective C++ Item 26 also suggests it for performance reasons. But I recently happened to hear from someone that compilers are smart enough to optimize variables where ever they are defined irrespective of the scope they are actually used within a function. And he suggests to declare the variable at the top of the function for ease of understanding(i dont buy this reason though). Is he correct regarding the compiler optimization?
(The question is regarding performance and compiler optimization. Not code readability).
