#include <stdio.h>
#include <string.h>
/*C 库函数 int fputc(int char, FILE *stream) 把参数 char 指定的字符(一个无符号字符)
写入到指定的流 stream 中,并把位置标识符往前移动。*/
int main ()
{
FILE *fp;
char *str="chm henshuai";
int len=strlen(str);
fp = fopen("file.txt", "w+");
for( int i=0 ; i <= len; i++ )
{
fputc(i, fp);
str++;
}
fclose(fp);
return(0);
}
//结果是创建了file.txt文件,并且内容为chm henshuai,同时光标移动到末尾。
#include <stdio.h>
/*C 库函数 int fgetc(FILE *stream) 从指定的流 stream 获取下一个字符(一个无符号字符),
并把位置标识符往前移动。*/
/*C 库函数 int feof(FILE *stream) 测试给定流 stream 的文件结束标识符。
到达文件末尾返回非0,未到文件末尾返回0.*/
int main ()
{
FILE *fp;
int c;
int n = 0;
fp = fopen("file.txt","r");
if(fp == NULL)
{
perror("打开文件时发生错误");
return(-1);
}
do
{
c = fgetc(fp);
if( feof(fp) )
{
break ;
}
printf("%c", c);
}while(1);
fclose(fp);
return(0);
}
//结果是文件打开成功就打印文件的内容到终端