#include <stdio.h>
void main()
{
FILE *fp;
char buf[33];
fp=fopen("d:\\test1.txt","r"); //文件所在的路径
if(fp!=NULL)
{
int len;
do
{
len=fread(buf,sizeof(char),32,fp);
buf[len]='\0';
printf("%s\n",buf);
}while(len==32);
fclose(fp);
}
else
{
printf("open error!");
}
}
/UploadFile/2005-11/2005112317153975.gif" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www./UploadFile/2005-11/2005112317153975.gif');}" onmousewheel="return imgzoom(this);" alt="" />