幾種經常使用的字符串處理函數

1.puts函數(字符串輸出函數)數組 通常形式:puts(字符數組)函數 做用:輸出一個字符串(以‘\0’結束的字符序列)。spa 2.gets函數(字符串輸入函數)code 通常形式:gets(字符數組)blog 做用:從終端輸入一個字符串到字符數組函數。字符串 #include <stdio.h> int main() { char s[100]; gets(s); puts(s);
相關文章
相關標籤/搜索