I wonder, which programming languages that has no defined standard about buffer overflow checking?
for example:
- C and C++ by default does not check for index out of bound, solution: use C++ STL
- C's gets, scanf and strcpy, solution: use std::string, strncpy, getline, and fgets.