c語言從鍵盤輸入兩個字串,將字串連線到字串的後面,並輸出連線

2021-07-01 01:11:15 字數 955 閱讀 8862

1樓:

#include

#include

int main(){

char* s1;

char* s2;

char* output="";

printf("please input the first string:");

scanf("%s",s1);

printf("please input the second string:");

scanf("%s",s2);

strcat(output,s1);

strcat(output,s2);

printf("result is \"%s\"",output);

return 0;

擴充套件資料輸入10個字串存入二維字元陣列中, * 求出其中最大者並輸出。

char input[10][100];

char * max = &input[0];

for (int i = 0; i <

if (strcmp(max, &input[i]) < 0) max = &input[i];

printf("%s", max);

2樓:

1、新建乙個工程和.c檔案 ,輸入標頭檔案和主函式。

2、定義變數型別。

3、呼叫cpy函式。

4、定義乙個函式,並定義變數型別。

5、用乙個for 語句和if語句判斷是否為母音。

6、最後加乙個字串結束符,並在主函式中輸出。

7、編譯。執行得到最後結果。

3樓:

#include

#include

int main(int argc,char *argv)

c語言程式設計 輸入兩個字串str1,str2,將兩個字串

include include include int main void for str1 0 str1 str3 str1 for str2 0 str2 str3 str2 str3 0 printf s n p return 0 依據你的內容寫好的str1,str2,最後輸入了str3.我這...

求大神C語言程式從鍵盤輸入字串(少於字元)存入字元陣列,統計並輸出其中數學

include include int main printf 字母的個數 zhi d,數字的dao個數 d n,j 關於c語言的一道程式設計題,求大神解答!從鍵盤輸入乙個字串存入乙個字元陣列中,其中任意兩個相鄰字元 10 include define n 99 int main i for j 0...

C語言程式設計編寫程式,從鍵盤輸入字串放在字元陣列a中,用選擇法將a中的有效字元按降序排列

include int main tmp a i a i a max a max tmp printf s n a return 0 c語言程式設計 編寫程式,從鍵盤輸入乙個字串放在字元陣列a中,用選擇法將a中的有效字元按降序排列 include include include void inord...