Is it possible to write code in C and not be vulnerable to buffer overflows? Or is this a fool's errand?
Name:
Anonymous2010-11-19 18:54
neither C or C++ were designed to be secure languages (the languages provide no boundary checking or other safeguards and have very lax typing), to write secure code you have to follow special rules and guidelines and only use secure subsets such as MISRA C or JSF++