Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.
share|improve this question

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.