#include
#include
#include
int main()
{
FILE *fp = fopen("loss.txt", "w");
if (fp == NULL){
printf("Failed to open file");
return 0;
}
double i, y;
for (i = 0, y = 0; i < 100; i += 0.5){
fprintf(fp, "%f\t", i);
y = sin(i);
fprintf(fp, "%f\n", y);
}
fclose(fp);
//FILE *fpread = fopen("loss.txt", "r");
//if (fpread == NULL)
//{
// printf("Failed to open file ");
// return 0;
//}
int a[10] = { 0 };
//int *a = new int[10];
//for (int i = 0; i < 10; i++)
//{
// fscanf(fpread, "%d", &a[i]);
// printf("%d ", a[i]);
//}
//fclose(fpread);
//system("pause");
}
真正打開文件的為fopen函數,需要的前提是txt文件放到工程文件路徑之下,否則無法識別,同時打開待讀取文件 fname = "123.txt"
#include
#include// 為了使用exit()
int main()
{
int ch;//getc的返回值是整數
FILE *fp;//文件指針
char fname[50]; // 儲存文件名
// printf("Enterthenameofthefile:");
// scanf("%s",fname);
fp = fopen("123.txt","r"); // 打開待讀取文件 fname = "123.txt"
if (fp == NULL) // 如果失敗
{
printf("Failedtoopenfile.Bye\n");
exit(1); //退出程序
}
// getc(fp)從打開的文件中獲取一個字符
while((ch=getc(fp))!=EOF)
putchar(ch);
fclose(fp);// 關閉文件
return 0;
}
運行后代碼 如下 :
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。
舉報投訴
-
嵌入式
+關注
關注
5046文章
18817瀏覽量
298553 -
C語言
+關注
關注
180文章
7575瀏覽量
134087 -
函數
+關注
關注
3文章
4237瀏覽量
61969
發布評論請先 登錄
相關推薦
CRC算法原理及C語言實現
CRC算法原理及C語言實現:本文從理論上推導出CRC 算法實現原理,給出三種分別適應不同計算機或微控制器硬件環境的C 語言程序。讀者更能根據
發表于 09-23 23:38
?31次下載
用C語言實現FFT算法
用C語言實現FFT算法
/*****************fft programe*********************/#include "typedef.h" #include "math.h"
struct compx EE(struct compx
發表于 10-30 13:39
?6300次閱讀
評論