11.标准IO库

2019-10-30  本文已影响0人  辉神来了
标准IO和文件IO有什么区别
常用标准IO函数介绍
一个简单的标准IO读写文件实例
#include <stdio.h>      // standard input output
#include <stdlib.h>
#include <string.h>


#define FILENAME    "1.txt"

int main(void)
{
    FILE *fp = NULL;
    size_t len = -1;
    //int array[10] = {1, 2, 3, 4, 5};
    char buf[100] = {0};
    
    fp = fopen(FILENAME, "r+");
    if (NULL == fp)
    {
        perror("fopen");
        exit(-1);
    }
    printf("fopen success. fp = %p.\n", fp);
    
    // 在这里去读写文件
    memset(buf, 0, sizeof(buf));
    len = fread(buf, 1, 10, fp);
    printf("len = %d.\n", len);
    printf("buf is: [%s].\n", buf);

#if 0   
    fp = fopen(FILENAME, "w+");
    if (NULL == fp)
    {
        perror("fopen");
        exit(-1);
    }
    printf("fopen success. fp = %p.\n", fp);
    
    // 在这里去读写文件
    //len = fwrite("abcde", 1, 5, fp);
    //len = fwrite(array, sizeof(int), sizeof(array)/sizeof(array[0]), fp);
    len = fwrite(array, 4, 10, fp);
    printf("len = %d.\n", len);
#endif  
    
    fclose(fp);
    return 0;
}



上一篇 下一篇

猜你喜欢

热点阅读