摘要: #include <stdio.h> #include <string.h> struct Testscanf { char input[20]; char intput1[3]; }; int main() { char input[] = "John 25"; char intput1[] = 阅读全文
posted @ 2023-04-15 10:41 zhaogaojian 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1、该函数参数是char ,所以就算传入一个const char ,也会被修改。 2、替代函数 #include <stdio.h> #include <string.h> int main() { const char *str = "Hello, world! How are you?"; ch 阅读全文
posted @ 2023-04-15 00:38 zhaogaojian 阅读(21) 评论(0) 推荐(0) 编辑