View Single Post
Re: Well , just a small question
Old
  (#3)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: Well , just a small question - 25-12-2004

"buffer overrun" means this:
PHP Code:
#include <string.h>
main()
{
   
char sz[5];
   
strcpy(sz"abcdefghijklmnopqrstuvwxyz"); // buffer overrun

  
Reply With Quote