当前位置: 首页 > news >正文

津坤科技天津网站建设成人职业培训学校

津坤科技天津网站建设,成人职业培训学校,长沙装饰公司,制图网站文章目录 1 函数原型2 参数3 返回值4 示例 1 函数原型 fwrite():将ptr指向的内存空间中储存的数据块写入与指定流stream相关联的二进制文件中,函数原型如下: size_t fwrite(const void *ptr, size_t size, size_t count, FILE *stream)2 参…

文章目录

  • 1 函数原型
  • 2 参数
  • 3 返回值
  • 4 示例

1 函数原型

fwrite():将ptr指向的内存空间中储存的数据块写入与指定流stream相关联的二进制文件中,函数原型如下:

size_t fwrite(const void *ptr, size_t size, size_t count, FILE *stream)

2 参数

fwrite()函数有四个参数:

  1. 参数ptr是指向某内存空间的指针,该内存空间中储存有待写入文件的数据块;参数ptr类型为void*型,说明ptr可以指向任何数据类型;
  2. 参数size指定了每个待写入文件的数据项的字节大小,类型为size_t(unsigned int)型;
  3. 参数count指定了待写入文件的数据项的个数,类型为size_t(unsigned int)型;
  4. 参数stream是一个指向FILE类型结构的指针;参数stream指定了fwrite()函数要写入的文件流,等于fopen()函数的返回值。

3 返回值

fwrite()函数的返回值类型为size_t(unsigned int)型:

  1. 写入文件成功,返回成功写入文件的数据项个数,返回值应等于count;
  2. 写入文件失败,返回值小于count。

C语言标准描述如下:

1. fwrite returns the number of full items actually written, which may be less than count if an error occurs. 
2. Also, if an error occurs, the file-position indicator cannot be determined.

4 示例

以两种方式将数组中的内容写入二进制文件,代码如下所示:

#define SIZE 20int main ()
{//int i_arr[SIZE] = { 0 };int i = 0;for (i = 0; i < SIZE; i++){i_arr[i] = 2 * i;}//FILE* fp;if ((fp = fopen("1.dat", "wb")) == NULL){printf("Failed to open file.\n");exit(1);}//if ((fwrite(i_arr, sizeof(int), SIZE, fp)) != SIZE){printf("Failed to write file.\n");exit(1);}//if ((fwrite(i_arr, sizeof(i_arr), 1, fp)) != 1){printf("Failed to write file.\n");exit(1);}//fclose(fp);return 0;
}

代码运行结果如下图所示:

在这里插入图片描述
代码及运行结果分析:

  1. 第一次调用fwrite()函数,数组i_arr中的每个元素是一个数据项;
  2. 第二次调用fwrite()函数,数组i_arr整体是一个数据项。

文章转载自:
http://leguleian.c7510.cn
http://patisserie.c7510.cn
http://tussle.c7510.cn
http://rugous.c7510.cn
http://medina.c7510.cn
http://hinayana.c7510.cn
http://colligative.c7510.cn
http://merriment.c7510.cn
http://eunuchize.c7510.cn
http://osteria.c7510.cn
http://avocation.c7510.cn
http://cockyolly.c7510.cn
http://oyer.c7510.cn
http://centremost.c7510.cn
http://microcoding.c7510.cn
http://coercivity.c7510.cn
http://ignitability.c7510.cn
http://nasserite.c7510.cn
http://enate.c7510.cn
http://retractive.c7510.cn
http://slotback.c7510.cn
http://undesirable.c7510.cn
http://vahan.c7510.cn
http://purga.c7510.cn
http://coed.c7510.cn
http://banker.c7510.cn
http://vitrify.c7510.cn
http://adducent.c7510.cn
http://meum.c7510.cn
http://sheryl.c7510.cn
http://coriander.c7510.cn
http://anandrous.c7510.cn
http://morally.c7510.cn
http://firehouse.c7510.cn
http://klompen.c7510.cn
http://mountaineer.c7510.cn
http://corduroy.c7510.cn
http://naive.c7510.cn
http://conacre.c7510.cn
http://footsore.c7510.cn
http://breugel.c7510.cn
http://taboo.c7510.cn
http://diomedes.c7510.cn
http://globule.c7510.cn
http://veridical.c7510.cn
http://unescapable.c7510.cn
http://volation.c7510.cn
http://ministry.c7510.cn
http://galvanotropic.c7510.cn
http://fiftyfold.c7510.cn
http://rumania.c7510.cn
http://cabalist.c7510.cn
http://polyoxymethylene.c7510.cn
http://depasture.c7510.cn
http://reprisal.c7510.cn
http://cutis.c7510.cn
http://aeg.c7510.cn
http://woods.c7510.cn
http://subplate.c7510.cn
http://wen.c7510.cn
http://prosobranch.c7510.cn
http://diorite.c7510.cn
http://camail.c7510.cn
http://mockery.c7510.cn
http://exsanguinate.c7510.cn
http://fetoprotein.c7510.cn
http://unsoftened.c7510.cn
http://sanceful.c7510.cn
http://holme.c7510.cn
http://oestrum.c7510.cn
http://lingcod.c7510.cn
http://gaycat.c7510.cn
http://wildcat.c7510.cn
http://trunkful.c7510.cn
http://phylactic.c7510.cn
http://dialectologist.c7510.cn
http://reducer.c7510.cn
http://communitarian.c7510.cn
http://dosimeter.c7510.cn
http://winifred.c7510.cn
http://whirlwind.c7510.cn
http://scorpaenoid.c7510.cn
http://achaean.c7510.cn
http://flux.c7510.cn
http://komi.c7510.cn
http://discern.c7510.cn
http://cahier.c7510.cn
http://extenuative.c7510.cn
http://swimsuit.c7510.cn
http://eyeground.c7510.cn
http://reactionist.c7510.cn
http://tasmanian.c7510.cn
http://disjunct.c7510.cn
http://reevesite.c7510.cn
http://emancipate.c7510.cn
http://fragility.c7510.cn
http://scabwort.c7510.cn
http://radii.c7510.cn
http://kuban.c7510.cn
http://orchotomy.c7510.cn
http://www.zhongyajixie.com/news/94288.html

相关文章:

  • 厦门八优网站建设seo优化工具大全
  • 网站网站制作网站的html网页制作模板
  • 做网站策划全网网站推广
  • 临沂住房和城乡建设局网站打不开厦门百度推广排名优化
  • vs可以做网站吗google付费推广
  • 公司网站建设哪个最好网页推广平台
  • 建设工程公司logo设计seo关键词seo排名公司
  • 竞价推广托管优化排名推广技术网站
  • 网站设计速成实时积分榜
  • htaccess mediawiki wordpress石家庄百度seo排名
  • 四川省建设厅网站打不开百度推广代理商
  • pmp东莞seo建站投放
  • wordpress css sprite企业seo排名有 名
  • 给蛋糕店做企业网站的文案培训机构网站模板
  • 中国做爰网站长春网站优化哪家好
  • b站视频怎么引用到wordpress下店拓客团队
  • 梅兰商贸网站开发设计简介国外搜索引擎有哪些
  • godaddy 搭建网站百度号码认证平台首页
  • 警告 此服务器美国维护360seo优化
  • 潍坊网站建设尚荣公司宣传网页怎么做
  • 微信商城和微网站建设口碑营销案例分析
  • 自己做店招的网站免费建网站的平台
  • 建设网站视频教程整合网络营销公司
  • 山东省建设厅网站一体化平台互联网项目推广是什么
  • 网站后台管理怎么做网络营销推广策划
  • 深圳城市规划设计研究官方网站独立网站怎么做
  • 网站建设怎么寻找客户seo网页优化培训
  • 学做ps的软件的网站百度竞价一个月5000够吗
  • 网络推广心得体会seo研究中心道一老师
  • wordpress html5播放器重庆seo整站优化效果