Be careful of Magic behaviour due to compilersThis tip submitted by manik on 2011-10-14 07:11:41. It has been viewed 9900 times.Rating of 5.9 with 44 votes Always try to define functions before using it or at least give prototype. Else some compilers like gcc will cause different behaviour #include If you compile this code using gcc, you will get surprised because it will allow the function call. So avoid using functions before they are declared. More tips Help your fellow programmers! Add a tip! |