Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.19 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(int argc, char **argv) {
  5.     char crash[16];
  6.     char* plz = "this is probably longer than 16 characters";
  7.  
  8.     strcpy(crash, plz);
  9.  
  10.     return 0;
  11. }