char **ptr = NULL; int i; // Allocate memory for 5 string pointers ptr=(char **) malloc(sizeof(char*)*5); // Allocate memory for 5 strings ...
確定! 回上一頁