strtock函式小結。

2022-07-19 19:12:13 字數 552 閱讀 8442

printf(),以%s格式輸出字串時,遇到\0結束。

#include

#include

int main()

char str = "hello world linux!";

char*str2 =「hello world linux!」

printf("%s\n", str);  

char *ret = strtok(str, " ");//呼叫strtok函式以空格分隔字元,就是吧字串陣列str裡的第乙個空格裡的

//前面所有字元割下來放到,讓ret和str都指向被切割下來的字串。

printf("%s, %s\n", str, ret);

ret = strtok(null, " ");//null使ret標記字串被分割剩餘部分。再次呼叫strtok函式以空格分隔字元

printf("%s, %s\n", str, ret);

ret = strtok(null, " ");  

printf("%s, %s\n", str, ret);

return 0;

sscanf 函式小結

1.常見用法。char buf 512 sscanf 123456 s buf 此處buf是陣列名,它的意思是將123456以 s的形式存入buf中!printf s n buf 結果為 123456 2.取指定長度的字串。如在下例中,取最大長度為4位元組的字串。sscanf 123456 4s b...

fork函式小結

在unix系統中,只有乙個系統呼叫可以用來建立新程序 fork。由fork建立的新程序被稱為子程序。fork函式被呼叫一次,但返回2次。2次返回的區別是子程序的返回值是0,而父程序的返回值是新建立的額子程序的程序id。子程序和父程序繼續執行fork呼叫之後的指令。子程序是父程序的副本。例如,子程序獲...

箭頭函式小結

1,箭頭函式不具備this和arguments,自己沒有this就找上一級的this。3,如何確定this是誰,誰呼叫就是誰。前面是誰就是誰。fucntion a b let a b b 1 去掉function關鍵字引數有乙個可以省略小括號,小括號和大括號之間有乙個箭頭,如果沒有大括號則直接是返回...