首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴yangzhen1001的代码贴C语言
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#define FILE_PATH "D:\\demo.txt"  // 文件路径
int main(){
    char name[20];  // 姓名 
    int age;  // 年龄 
    int studNo;  // 学号 
    float score;  // 平均分 
    FILE *fp;  // 文件指针 
   
    // 判断文件是否能够正确创建/打开 
......................
阅读全部 | 2015年2月6日 14:43
1
yangzhen1001