## page was renamed from AdvancedNetworkSecurity/BufferOverFlowExample
= BufferOverFlowExample =

Consider the program below:

{{{#!cpp
#include <stdio.h>
#include <string.h>

int main()
{
  char lstring[10];
  printf("Enter a long string: ");
  scanf("%s", lstring);
  printf("You entered: %s\n",lstring);
  return 0;
}
}}}