摘要: strcpy 要求传入的两个指针 restrict(即区间不重叠)。 因此直接 strcpy(&a[1],a) 是未定义行为。 阅读全文
posted @ 2023-12-24 20:51 Kazuma_124 阅读(4) 评论(0) 推荐(0) 编辑
摘要: void test() { FILE* fp = fopen("test.txt", "w"); if (fp == NULL) { perror("fopen error"); exit(1); } char a[5] = { '1','2','\0','3','4' }; fwrite(a, s 阅读全文
posted @ 2023-12-24 20:07 Kazuma_124 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { //printf()函数不同参数间可以换行 printf("num one : %d,num two : %d", 1, 2); //printf字符串内换行的三种方法 //一 printf("Here's one way to pri 阅读全文
posted @ 2023-12-24 14:05 Kazuma_124 阅读(439) 评论(0) 推荐(0) 编辑