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. "); 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 }