diff options
author | Guillermo Ramos | 2013-05-27 00:07:01 +0200 |
---|---|---|
committer | Guillermo Ramos | 2013-05-27 00:07:01 +0200 |
commit | 45ec0c7e1bfd251e13f4d3ade89785e98df31ba9 (patch) | |
tree | 1f9b534ed4ea650517c39799f5e2aed0885ce87d /c_seguridad/code/stack/ejemplounopuntoce.c | |
download | acm-master.tar.gz |
Diffstat (limited to 'c_seguridad/code/stack/ejemplounopuntoce.c')
-rw-r--r-- | c_seguridad/code/stack/ejemplounopuntoce.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/c_seguridad/code/stack/ejemplounopuntoce.c b/c_seguridad/code/stack/ejemplounopuntoce.c new file mode 100644 index 0000000..4d2425e --- /dev/null +++ b/c_seguridad/code/stack/ejemplounopuntoce.c @@ -0,0 +1,10 @@ +#include <stdlib.h> + +char global; +float pi = 3.14; + +int main() { + int local; + char* buffer = (char*)malloc(20); + return 0; +} |