#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函數(shù),需要的前提是txt文件放到工程文件路徑之下,否則無法識(shí)別,同時(shí)打開待讀取文件 fname = "123.txt"
#include
#include// 為了使用exit()
int main()
{
int ch;//getc的返回值是整數(shù)
FILE *fp;//文件指針
char fname[50]; // 儲(chǔ)存文件名
// printf("Enterthenameofthefile:");
// scanf("%s",fname);
fp = fopen("123.txt","r"); // 打開待讀取文件 fname = "123.txt"
if (fp == NULL) // 如果失敗
{
printf("Failedtoopenfile.Bye\n");
exit(1); //退出程序
}
// getc(fp)從打開的文件中獲取一個(gè)字符
while((ch=getc(fp))!=EOF)
putchar(ch);
fclose(fp);// 關(guān)閉文件
return 0;
}
運(yùn)行后代碼 如下 :
聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請(qǐng)聯(lián)系本站處理。
舉報(bào)投訴
-
嵌入式
+關(guān)注
關(guān)注
5082文章
19104瀏覽量
304796 -
C語言
+關(guān)注
關(guān)注
180文章
7604瀏覽量
136683 -
函數(shù)
+關(guān)注
關(guān)注
3文章
4327瀏覽量
62569
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
用C語言實(shí)現(xiàn)FFT算法
用C語言實(shí)現(xiàn)FFT算法
/*****************fft programe*********************/#include "typedef.h" #include "math.h"
struct compx EE(struct compx
發(fā)表于 10-30 13:39
?6341次閱讀
使用C語言實(shí)現(xiàn)靜態(tài)網(wǎng)頁的代碼免費(fèi)下載
本文檔的主要內(nèi)容詳細(xì)介紹的是使用C語言實(shí)現(xiàn)靜態(tài)網(wǎng)頁的代碼免費(fèi)下載。
發(fā)表于 11-22 16:20
?2次下載
怎么用C語言實(shí)現(xiàn)多態(tài)
這里我想主要介紹下在C語言中是如何實(shí)現(xiàn)的面向?qū)ο?。知道?b class='flag-5'>C語言實(shí)現(xiàn)面向?qū)ο蟮姆绞?,我們?cè)俾?lián)想下,C
C語言實(shí)現(xiàn)Web參數(shù)傳遞
電子發(fā)燒友網(wǎng)站提供《C語言實(shí)現(xiàn)Web參數(shù)傳遞.docx》資料免費(fèi)下載
發(fā)表于 03-24 09:14
?2次下載
評(píng)論