## page was renamed from AdvancedNetworkSecurity/BufferOverFlowExample = BufferOverFlowExample = Consider the program below: {{{#!cpp #include #include int main() { char lstring[10]; printf("Enter a long string: "); scanf("%s", lstring); printf("You entered: %s\n",lstring); return 0; } }}}