- 论坛徽章:
- 0
|
- #include <stdio.h>
- #include <string.h>
- #include <strings.h>
- #include <stdlib.h>
- #include <memory.h>
- #include <assert.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <errno.h>
- #include <sys/times.h>
- #include <sys/ioctl.h>
- #include <procinfo.h>
- #include <math.h>
- main(int argc, char *argv[])
- {
- FILE *fp;
- fp = fopen("gqq.test","w");
- if(fp == NULL)
- {
- printf("file is not exist\n");
- return -1;
- }
- char aczStdLine[1024];
- memset(aczStdLine,'0',137);
- aczStdLine[137]='\n';
- fputs(aczStdLine,fp);
- fflush(fp);
- memset(aczStdLine,0,sizeof(aczStdLine));
- strcpy(aczStdLine,"aaabbbcccdddeeefffggghhhfzxcqnwreqjrn1\n");
- fputs(aczStdLine,fp);
- strcpy(aczStdLine,"aaabbbcccdddeeefffggghhhfzxcqnwreqjrn2\n");
- fputs(aczStdLine,fp);
- fflush(fp);
- fclose(fp);
- return 0;
- }
复制代码 执行后文件内容如下:
00000000000000000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000
@悩aaabbbcccdddeeefffggghhhfzxcqnwreqjrn1
aaabbbcccdddeeefffggghhhfzxcqnwreqjrn2
想不明白为什么第二行会有乱码在前面。
是初始化问题,还是fputs的原因? |
|