2


#include <stdio.h>

#include <stdlib.h>

int main(void)

{
FILE *fp;
char wordspess[50];
char translate[50]; /* 定义文件指针*/
if( ( fp = fopen("f1.txt", "w") ) == NULL){ /* 打开文件 */

printf("File open error!\n");

exit(0);

}


fscanf( fp, "%s",wordspell);
fscanf( fp, "%s",translate); /* 写文件 */


if( fclose( fp ) ){ /* 关闭文件 */

printf( "Can not close the file!\n" );

exit(0);

}
printf("%s\n%s",wordspell,translate);


return 0;

}

 

 

//包含头文件

//单词类型定义
typedef struct word
{
//定义一个成员,用于存储英文单词拼写
//定义一个成员,用于存储单词中文翻译
}word;

//定义结构体数组,用于存储单词列表

//函数声明

//主函数
int main()
{


return 0;
}

//子函数定义
//定义函数FileRead(),从文本文件中读取单词列表,存入结构体数组中
void FileRead()
{

}

上一篇:C语言——文件


下一篇:六、文件操作_2.文件访问模式详解