日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

C语言实用算法系列之strtok字符串分割、strcat字符串拼接、strcpy、strcmp

發(fā)布時間:2023/12/2 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C语言实用算法系列之strtok字符串分割、strcat字符串拼接、strcpy、strcmp 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

代碼

#define _CRT_SECURE_NO_WARNINGS#include <string.h> #include <stdio.h>char string[] = "A string\tof ,,tokens\nand some more tokens"; char seps[] = " ,\t\n"; char *token;int main(void) {printf("Tokens:\n");// Establish string and get the first token:token = strtok(string, seps); // C4996// Note: strtok is deprecated; consider using strtok_s insteadwhile (token != NULL){// While there are tokens in "string"printf(" %s\n", token);// Get next token: token = strtok(NULL, seps); // C4996} }/*int i = -1;do{pDest[++i] = pSource[i];} while (pSource[i]); */ void StringCopy(char* pDest, char* pSource) //微軟源碼 {int i = -1;while (pDest[++i] = pSource[i]); }void StrCopy(char* pDest, char* pSrc) {while(*pDest=*pSrc){++pDest;++pSrc;} }void StrCat(char* pDest,char* pSrc) {int i=0,j=0;while(pDest[i]!=0)++i;while(pDest[i++]=pSrc[j++]); }void StrCat1(char* pDest, char* pSrc) {while (*pDest)++pDest;while (*pDest = *pSrc)++pDest, ++pSrc; }int StrCmp(char* s1, char* s2) {unsigned char* p1 = (unsigned char*)s1;unsigned char* p2 = (unsigned char*)s2;while (*p1 && *p1++ == *p2++);return *p1 - *p2; }
  • %p %x %X 區(qū)別,%p 更好看
  • 指針相減,p1-p2 = 地址之差/sizeof(類型)

運行結(jié)果

總結(jié)

以上是生活随笔為你收集整理的C语言实用算法系列之strtok字符串分割、strcat字符串拼接、strcpy、strcmp的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。