摘要: 1 #include <stdio.h> 2 #include <string.h> 3 4 main() 5 { 6 char *str = "123 abc 456 def 7"; 7 char buf[32]; 8 int j = 0, i = 0; 9 10 memset(buf, '\0', sizeof(buf)); 11 for (i = 0; i < strlen(str); ++ 阅读全文
posted @ 2019-08-21 18:27 insistYuan 阅读(1106) 评论(0) 推荐(0) 编辑