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 Microsoft warnings like
'fscanf': This function or variable may be unsafe. Consider using fscanf_s instead.
I get these despite following some steps on MSDN Developer's site for setting up an ANSI C project, but all the _s ("secure") calls are not ANSI C!
Any suggestions on putting Visual C++ Studio in a strict ANSI-only mode?
Thanks.