[C/C++基礎]- 純C的strnpy模擬
本篇要分享-純C的strnpy模擬實作,有興趣的(C/P)同好,歡迎來(C/P)一下哈哈 ^ ^。
#include <stdio.h> #include <string.h> void strget(constchar *data) { int i; char buf[4]; for(i=0;i<3;i++) buf[i]=*(data+3+i); buf[3]='\0'; printf("%s\n",buf); } void main() { char chrinput[]="127.0.0.1:6000"; strget(chrinput); }
|
沒有留言:
張貼留言