You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

simple_buffer_overflow.c 153 B

2 years ago
12345678910
  1. #include <memory.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. int main(void) {
  5. int buffer[16];
  6. for (int i = 0; i < 32; i++) {
  7. buffer[i] = i;
  8. }
  9. }

No Description

Contributors (1)