摘要: 字符串操作: gets函数: gets(str); puts函数: puts(str); strcat函数 字符串连接函数 char str1[30] = {"apple"}; char str2[30] = {"app"}; printf("%s",strcat(str1,str2));输出: a 阅读全文
posted @ 2021-01-19 14:27 荣荣荣荣荣荣 阅读(59) 评论(0) 推荐(0)