庫常用的函式

2021-07-26 11:38:30 字數 904 閱讀 3431

#include庫包含字串處理函式,常用的有strcpy,strcat,strcmp,strchr等

1.strcpy是字串賦值函式

char *strcpy(char *target,char *source);

#include#includevoid main(void);

char b[8] = ;

strcpy(b,a);

puts(b);

}

以第乙個引數為首位址所指向的空間開始的連續儲存空間上。

2.strcat是字串連線函式

char *strcat(char *s1,char *s2);

#include #include void main(void)

strcat()函式本質:將s2指向的空間開始,遇0則止的字元,連線到s1所指向字串的末尾

3.strcmp是ascii碼大小比較

int strcmp(char *s1,char *s2);

#include#includevoid main(void)

若s1所指向的空間等於s2所指向的空間,則返回零;

若s1所指向的空間小於s2所指向的空間,則返回負數;

若s1所指向的空間大於s2所指向的空間,則返回正數。

4.strchr是在字串中查詢指定字元第一次出現的位址

char *strchr(char *string,char ch);

#include #include void main(void)

如果想要尋找第二個'r',只需要ptr = strchr(string+1,c);繼續

常用函式庫收集

unsigned long resolv char host else host ip u long hp h addr return host ip 校驗和演算法 unsigned short checksum unsigned short buffer,int size if size cksu...

JavaScript常用函式庫

檢驗是否數字 param id 待校驗元素id returns true是數字,false相反 function chaecknum id else return true 校驗起止日期要小於結束日期 param begindateid 開始日期id param enddateid 結束日期id r...

linux常用庫 對應函式

1 include 由字面意思,unistd.h是unix std的意思,是posix標準定義的unix類系統定義符號常量的標頭檔案,包含了許多unix系統服務的函式原型,例如read函式 write函式和getpid函式。unistd.h含有的常量與函式 ssize t read int,void...