c语言将字符串写入文件的实现方法

在c语言中,可以使用fprintf函数来将字符串写入文件。fprintf函数的声明如下:

int fprintf(FILE *stream, const char *format, ...);

其中,stream参数表示要写入的文件流,format参数表示要写入的字符串,其余参数是可选的,可以传入要写入的变量。

下面是一个示例,可以将字符串“Hello World!”写入文件example.txt:

#include <stdio.h>

int main()
{
    FILE *fp;
    char *str = "Hello World!";

    /* 打开文件example.txt只写 */
    fp = fopen("example.txt", "w");

    /* 写入字符串 */
    fprintf(fp, "%s", str);

    /* 关闭文件 */
    fclose(fp);

    return 0;
}

使用fopen函数打开文件example.txt,只写模式,使用fprintf函数将字符串“Hello World!”写入文件,使用fclose函数关闭文件。

还可以使用fputs函数来将字符串写入文件,fputs函数的声明如下:

int fputs(const char *str, FILE *stream);

其中,str参数表示要写入的字符串,stream参数表示要写入的文件流。

下面是一个示例,可以将字符串“Hello World!”写入文件example.txt:

#include <stdio.h>

int main()
{
    FILE *fp;
    char *str = "Hello World!";

    /* 打开文件example.txt只写 */
    fp = fopen("example.txt", "w");

    /* 写入字符串 */
    fputs(str, fp);

    /* 关闭文件 */
    fclose(fp);

    return 0;
}

使用fopen函数打开文件example.txt,只写模式,使用fputs函数将字符串“Hello World!”写入文件,使用fclose函数关闭文件。

使用fprintf函数或fputs函数可以在c语言中将字符串写入文件,上面的示例可以帮助我们理解如何使用这两个函数。

本文链接:http://task.lmcjl.com/news/6073.html

展开阅读全文