c语言 13-1113-12
Posted 小虾米2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言 13-1113-12相关的知识,希望对你有一定的参考价值。
1、13-11
#include <stdio.h> int main(void) { FILE *fp; int i; double b[10]; double a[] = {0.1,1.1,2.1,3.1,4.1,5.1,6.1,7.1,8.1,9.1}; if((fp = fopen("tmp.bin", "wb")) == NULL) printf("\\aFile open failed.\\n"); else { fwrite(a, sizeof(double), 10, fp); fclose(fp); } if((fp = fopen("tmp.bin", "rb")) == NULL) printf("\\aFile open failed.\\n"); else { fread(b, sizeof(double), 10, fp); fclose(fp); for(i = 0; i < 10; i++) { printf("b[%d] = %.2f.\\n", i, b[i]); } } return 0; }
以上是关于c语言 13-1113-12的主要内容,如果未能解决你的问题,请参考以下文章
我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段
我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段
C语言必会面试题(3耶稣有13个门徒,当中有一个就是出卖耶稣的叛徒,请用排除法找出这位叛徒:13人围坐一圈,从第一个開始报号:1,2,3,1,2,3...。凡是报到“3”就退出圈子,...)(代码片段