我想創建一個字符串數組,其中用戶將輸入和數據將存儲在數組..我不知道該怎麼做 - (我讀了幾本C書籍) 任何幫助ll是讚賞 我到目前爲止所嘗試的:字符串數組插入問題
int choice;
printf("enter the number of the strings: ");
scanf("%d",&choice);
char **str=(char **)malloc(100);
int i;
for(i=0;i<choice;i++)
{
printf("enter %dth element ",i+1);
str[i]=(char *)malloc(10);
scanf("%s",str[i]);
}
printf("%s",str[0]);
你只需要閱讀更多我猜,這是非常基本的和基本的技能將使你做到這一點。 –
是的,它應該!但問題是程序正在終止! –
我應該希望它終止!我討厭運行一個我期望終止的程序,它會一直持續下去。 –