C语言 fprintf 函数

Posted 猿说编程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言 fprintf 函数相关的知识,希望对你有一定的参考价值。

目录

零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C 语言基础入门

一.fprintf 函数简介

fprintfC / C++ 中的一个格式化库函数,位于头文件 中,其作用是格式化输出到一个流文件中;函数原型为

/*
*描述:fputs 函数是向指定的文件写入一个字符串
*
*参数:
*   [in]  stream: 文件指针句柄;
*   [in]  format: 格式化字符串,与 printf 函数一样;
*
*返回值:如果成功,该函数返回一个非负值,如果发生错误则返回 EOF(-1)。
*/

int fprintf (FILE* stream, const char*format, [argument]);

fprintf 函数是变参函数,format 可以由一个或者多个参数构成,案例如下:

//示例:
fprintf(stream,"www.codersrc.com\\n");
fprintf(stream,"www.codersrc.com age:%d\\n",17);
fprintf(stream,"www.codersrc.com age:%d name:%s\\n",17, "zhangsan");
fprintf(stream,"www.codersrc.com age:%d name:%s height:%f\\n",17, "zhangsan",1.75);

二.fprintf 函数使用

/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:C语言教程 - C语言 fprintf 函数
//@Time:2021/07/30 07:30
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/


#include <cstdio>
#include<stdio.h>
#include<stdlib.h>
int main()
{
    //Initialize the file pointer
    FILE *f;
    char ch[100];

    // open the file for read and write operation
    if((f=fopen("test.txt","r+"))==NULL){
        //if the file does not exist print the string
        printf("Cannot open the file...");
        exit(1);
    }

    for(int i=0;i<10;i++){
        //enter the strings with values in the file
        fprintf(f,"The count number is %d\\n",i+1);
    }
    fclose(f);

    // open the file for read and write operation
    if((f=fopen("test.txt","r+"))==NULL){
        //if the file does not exist print the string
        printf("Cannot open the file...");
        exit(1);
    }

    printf("File content is--\\n");
    printf("\\n...............print the strings..............\\n\\n");
    while(!feof(f)){
        //takes the first 100 character in the character array
        fgets(ch,100,f);
        //and print the strings
        printf("%s",ch);
    }
    //close the file
    fclose(f);

    return 0;
}

通过 fprintf 函数将数据写入到文件中,在通过 fgets 函数读取文件的每一行数据;

三.猜你喜欢

  1. C 语言 数组下标越界和内存溢出区别
  2. C 语言 使用指针遍历数组
  3. C 语言 指针和数组区别
  4. C 语言 指针数组和数组指针区别
  5. C 语言 野指针
  6. C 语言 函数值传递和址传递
  7. C 语言 函数不定长参数
  8. C 语言 函数指针
  9. C 语言 指针函数
  10. C 语言 回调函数 callback
  11. C 语言 #pragma once
  12. C 语言 #include <> 与 #include “” 区别
  13. C 语言 const 修饰函数参数
  14. C 语言 const 和 define 区别
  15. C 语言 #运算符
  16. C 语言 ##运算符
  17. C 语言 __VA_ARGS__
  18. C 语言 ##__VA_ARGS__
  19. C 语言 函数不定长参数 ##__VA_ARGS__经典案例
  20. C 语言 va_start / va_end / va_arg 自定义 printf 函数
  21. C 语言 main 函数
  22. C 语言 main 函数参数 main(int argc, char *argv[])
  23. C 语言 局部变量
  24. C 语言 全局变量
  25. C 语言 全局变量和局部变量区别
  26. C 语言 static
  27. C 语言 extern

未经允许不得转载:猿说编程 » C 语言 fprintf 函数

本文由博客 - 猿说编程 猿说编程 发布!

c语言函数 fprintf()(向文件写入格式化字符串)

需包含头文件<stdio.h>

文章目录

描述

C 库函数 int fprintf(FILE *stream, const char *format, …) 发送格式化输出到流 stream 中。

声明

下面是 fprintf() 函数的声明。
int fprintf(FILE *stream, const char *format, ...)

参数

  • stream – 这是指向 FILE 对象的指针,该 FILE 对象标识了流。
  • format – 这是 C 字符串,包含了要被写入到流 stream 中的文本。它可以包含嵌入的 format 标签,format 标签可被随后的附加参数中指定的值替换,并按需求进行格式化。format 标签属性是 %[flags][width][.precision][length]specifier,具体讲解如下:



返回值

如果成功,则返回写入的字符总数,否则返回一个负数。

实例

下面的实例演示了 fprintf() 函数的用法。

#include <stdio.h>
#include <stdlib.h>

int main()

   FILE * fp;

   fp = fopen ("file.txt", "w+");
   fprintf(fp, "%s %s %s %d", "We", "are", "in", 2014);
   
   fclose(fp);
   
   return(0);

ubuntu上编译运行结果:

[root@ubuntu /arnold_test/20220117_test_fprintf]18# cat file.txt 
We are in 2014[root@ubuntu /arnold_test/20220117_test_fprintf]19# 

参考文章:C 库函数 - fprintf()

以上是关于C语言 fprintf 函数的主要内容,如果未能解决你的问题,请参考以下文章

c语言函数 fprintf()(向文件写入格式化字符串)

C语言fscanf/fprintf函数(格式化读写文件)的用法(%[]和%n说明符)

c语言文件读写(fread,fprintf)

c语言文件读写(fread,fprintf)

C 中的共享内存代码片段

printf 和 fprintf 在c 和c++中的使用。