C语言里如何把已有的字符串写入文件里?

C语言里如何把已有的字符串写入文件里?,第1张

设要写入的数字是int型,则用控制字符串%d和%s来完成,举例代码行如下:

fprintf(fp,"%d %s\n",12345,"abcdefg")

其中:fp是成功写打开文件的指针。此代码行镇洞先向文件写入整型数字12345,再加一山旅答个空格,接着写入字符串abcdefg,然后写入'\n'。

#include "stdio.h"

#include "string.h"

void main()

{

char a[6]="china"

char temp[1024]

int n=0//记录有多少个china

FILE *outFile=fopen("c:\b.txt","r+")

FILE *inFile=fopen("c:\a.txt","r+")

while(fgets(temp,500,inFile)!=NULL)

{

int k=0

for(int i=0i<strlen(temp)i++)

{

if(temp[i]==a[k] &&k<逗慧strlen(a))

{

k++

}

else

{

if(k==strlen(a))

{

n++

fprintf(outFile,"%s

",a)

}

k=0

}

}

}

}

在C盘要有这两个文件。。。

a文件中可能有多个china ,指定加到第几行自己看情况 在设置一个int变量记录就行了

如下:

#include<iostream>

usingnamespacestd

#include<fstream>

           //包含的文件流头文件陆蔽

#include<cstdlib>

intmain()

{

fstreamdataFile

          //定义文件 *** 作对象

dataFile.open("aaa.tex",ios::out) //创建一个文件

if(!dataFile)

            //检查文件是否创建谨悉孙成功

{

cout<<"error

open"<<endl

exit(0)

}

dataFile<<"jjhshhs\n"

       //向文件写入数据

dataFile<<"dhjhjhsj\n"

dataFile.close()

         //关闭文件。如果没关闭文件的数据将没有写入。因为有一个输入                  祥链                         缓冲区

    system("pause")

return0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12298087.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存