首页 > 其他 > 详细

在堆内存中存放十个字符串并输出 堆栈溢出时退出程序

时间:2019-10-04 23:35:36      阅读:132      评论:0      收藏:0      [点我收藏+]
 1 # include <stdio.h>
 2 # include <stdlib.h>
 3 
 4 # define NUM 10
 5 
 6 int main()
 7 {
 8     char *str[NUM];  /* 定义一个字符性的指针数组 */
 9     int t;
10 
11     /* 为数组中的每个指针分配内存 */
12     for (t = 0; t<NUM; t++)
13     {
14         if ((str[t] = (char *)malloc(128)) == NULL)
15         {
16             printf("Allocation Error.\n");
17             exit(1);
18         }
19         /* 在分配的内存中存放字符串 */
20         printf("Enter string %d: ", t);
21         gets(str[t]);
22         //puts(str[t]);
23     }
24 
25     /* 释放内存 */
26     for (t = 0; t<NUM; t++)
27         free(str[t]);
28 
29     /* 由于主函数有返回值,故返回0值 */
30     return 0;
31 }

 

在堆内存中存放十个字符串并输出 堆栈溢出时退出程序

原文:https://www.cnblogs.com/liugangjiayou/p/11623518.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!