- 论坛徽章:
- 9
|
目的:利用Stand I/O写一个30M的文件,调节单次写的size,观察具体每次消耗的时间。
源程序如下:
#include <stdio.h>;
#include <stdlib.h>;
#define BUFSIZE 64
int filesize=30*1024*1024;
main()
{
FILE *stream;
long total = 0;
int c = 97;
char buffer[BUFSIZE];
if((stream = fopen("test1","w" ) == NULL)
{
printf("Could not open file test.\n" ;
exit(1);
}
setbuf(stream,buffer);
while(total < filesize)
{
putc(c,stream);
total++;
}
printf("total output in test1:%ld \n",total);
exit(0);
}
程序运行后输出为:total output in test1:1633771877
test1文件内容为:aaaaaaaaaaaaaaaaaaaaaaa...eaaa
调试时显示:single stepping until exit from function putc,which has no line number information.
若取消setbuf,则程序运行正常,但不能达到调整buffer大小,观测消耗时间的目的.请问该如何修改本程序? |
|