strchr 實作 (strlen Implementation)
strchr 實作 教學與筆記。
說明
尋找字串裡某字元。若有回傳字元第一次出現的指標,若無返回 NULL。
1 |
|
結果圖:
1 | 0x7ffdf60ba0b2 |
strchr 實作 (strlen Implementation)
https://meowlucian.github.io/C/Common/strchr-Implementation/
strchr 實作 教學與筆記。
尋找字串裡某字元。若有回傳字元第一次出現的指標,若無返回 NULL。
1 | #include <stdio.h> |
結果圖:
1 | 0x7ffdf60ba0b2 |
strchr 實作 (strlen Implementation)
https://meowlucian.github.io/C/Common/strchr-Implementation/