I generally program & compile under Linux with gcc and -ansi flag; but I\'ve been forced with doing a job in Visual C++ and whenever I compile my C code I get all the Mi
One way to suppress specific warnings is to add something like the following to the source.
#if defined( _WIN32 ) #pragma warning(disable:4996) #endif