Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. ~/P/snippets $ cat > oob.cpp
  2. #include <iostream>
  3. int main() {
  4. std::cout << "Hello, world!"[1000];
  5. }
  6. ~/P/snippets $ clang++ -fsanitize=undefined -o oob oob.cpp
  7. ~/P/snippets $ ./oob
  8. oob.cpp:3:18: runtime error: index 1000 out of bounds for type 'const char [14]'
  9. 8⏎
  10. ~/P/snippets $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement