摘要:
strcpy 要求传入的两个指针 restrict(即区间不重叠)。 因此直接 strcpy(&a[1],a) 是未定义行为。 阅读全文
摘要:
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 阅读全文
摘要:
#include <stdio.h> int main() { //printf()函数不同参数间可以换行 printf("num one : %d,num two : %d", 1, 2); //printf字符串内换行的三种方法 //一 printf("Here's one way to pri 阅读全文