0
這類似於什麼,我試圖做(我跳過代碼檢查是否分配內存)的東西:它達到的strcatç動態內存/ C串
sscanf(line, "%[^\"]\"%[^\"]", tempString, tempString);
int length = strlen("stackoverflow.com") + strlen(tempString);
tempQuestion.link = (char *)malloc((length + 1) * sizeof(char));
tempQuestion.link = "stackoverflow.com";
strcat(tempQuestion.link, tempString);
程序崩潰之後。我無法弄清楚什麼可能是錯的。
感謝您的幫助:) – user1242967