摘要: C里没有String类型 要用char[]来代替String的职能 上代码: 1 #include <stdio.h> 2 #include <string.h> 3 4 int main(void) 5 { 6 const char *p1; 7 char str1[] = "hello"; 8 阅读全文
posted @ 2020-09-02 10:35 幻河 阅读(2541) 评论(0) 推荐(0) 编辑