Hello,
I have inherited a large piece of C code which was written in a non ansi compliant compiler. This compiler allowed variable declaration anywhere within a function body, whereas the Microsoft visual studio version 6 C compiler insists that all variables must be declared at the beginning of a function body. I dont have knowledge or access to the old compiler, so I am trying to get the code compiling in Visual studio C/C++ ver...