c語言程序設計進階week3:刪除字符串中的子串(字符串與指針的完美結合)

題目來源自mooc:C語言程序設計進階,僅供我的學習參考使用學習 #include <stdio.h> #include <string.h> int main(){ char s1[85], s2[85]; char *p; char temp[85]; scanf("%s",&s1); scanf("%s",&s2); while((p=strstr(s1,s2)) != NULL) { //
相關文章
相關標籤/搜索