strcat

    0熱度

    4回答

    請幫助我,我無法解決我在大學裏遇到的這個問題。我問我們學校的論壇,他們說這條線索:「有什麼區別,如果你發送長字符串的strcat,或您發送字符串B」 解釋什麼是錯的下一個程序: #include <string.h> #include <stdio.h> int main() { char A[10]; char B[20]; strcpy(A, "A stud

    1熱度

    1回答

    我得到的錯誤導航到strcat.asm文件,並在主循環入口處設置斷點。我創建的readFile方法在字符串在此strlen循環中被標記之前打破: while(!feof(fptr)) { fgets(oneLine, CONTACT_MAX, fptr); // process the next line to be tokenized if (oneLine[s

    0熱度

    1回答

    所以我正在構建一個shell,我正在執行的一個命令是提示符。這將需要一個參數,並設置爲提示,但如果沒有參數被輸入它會要求用戶輸入,然後使用該.....措辭真實非常非常所以這裏有一個例子: [SHELL] prompt code code[SHELL] ls code[SHELL] .... 或 [SHELL] prompt please enter a prefix: (user inp

    6熱度

    5回答

    的大小採取以下程序: #include <iostream> #include <cstring> using namespace std; int main() { char a[8] = "Hello, "; char b[7] = "world!"; strcat(a, b); cout << a; return 0; }

    0熱度

    2回答

    大家好我試圖編寫一個函數,返回的數據行並返回一個字符串。下面是我的代碼,我不確定它爲什麼不起作用。我已經添加了printf函數,當我調用函數時,什麼都不打印出來。? 編輯(因爲我還不能回答) - 謝謝你的回覆。當我將char c更改爲char * c時,它仍然不起作用。我只需要將該行讀入一個字符串並將其返回。 char* getLine(FILE *file, int lineNum){

    -5熱度

    3回答

    使用strcat函數時出現問題。我沒有idea.please幫助me.thanks char dst[5]="hello"; char *a = "12345"; char *b = "54321"; //work strcat(strcpy(dst, a), b); printf("one==%s\n",dst); //error strcpy(dst, a); strcat

    1熱度

    3回答

    我昨天開始學習C,所以這可能是一個微不足道的問題,但我仍然不明白。 比方說,我有以下代碼: #include <stdio.h> #include <string.h> int main() { char text[8]; strcpy(text, "Lorem "); puts(text); strcat(text, "ipsum!");

    0熱度

    2回答

    我在函數發送&s和char array(text)str_cpy void str_cpy(char *str_in, char *str_out); Examle(工作): void str_cpy(char *str_in, char *str_out); int main(int argc, char *argv[]) { char *s = NULL; str_

    0熱度

    1回答

    第C否則UNIX FUNC 「CP」 的模擬和我有實現麻煩: struct stat fsd; stat(argv[argc - 1], &fsd); if ((fsd.st_mode & S_IFMT) == S_IFDIR) { unsigned int i; for (i = src; i < argc - 1; i++) { char *xpat

    0熱度

    2回答

    大家好我必須創建一個.dat文件,應該命名爲用戶放入的任何文件,並且該文件包含人名(如果全名在一起,則無關緊要),日期和他/她的體重。現在問題是創建了文件「name」.dat,但在文件內部它應該只是用戶名,而不是在我的程序中,我顯示爲「name」.dat(就像文件名和擴展名)。 這裏是我的代碼: #include <cstdlib> #include <iostream> #include <