檔案是記錄的集合,或是硬碟上的一個位置,用於永久儲存資料。
當程式終止時,整個資料都會遺失。
將資料儲存在檔案中,即使程式終止,資料也會被保留。
如果要輸入大量數據,通常需要花費很多時間來輸入。
我們可以使用幾個指令輕鬆存取檔案的內容。
您可以輕鬆地將資料從一台電腦移動到另一台電腦而不進行更改。
透過使用C指令,我們可以以不同的方式存取檔案。
C程式語言中的檔案操作如下:
##聲明檔案指標的語法如下:
FILE *File pointer;
命名和開啟檔案指標的語法如下-
File pointer = fopen ("File name", "mode");
FILE *fp; fp = fopen ("sample.txt", "w");
#include <stdio.h> int main(){ char name[50]; int marks, i, num; printf("Enter number of students: "); scanf("%d", &num); FILE *fptr; fptr = (fopen("std.txt", "w")); // opening file in write mode if(fptr == NULL){ printf("Error!"); exit(1); } for(i = 0; i < num; ++i){ printf("For student%d</p><p>Enter name: ", i+1); scanf("%s", name); printf("Enter marks: "); scanf("%d", &marks); fprintf(fptr,"</p><p>Name: %s </p><p>Marks=%d </p><p>", name, marks); } fclose(fptr); return 0; }
Enter number of students: 3 For student1 Enter name: lucky Enter marks: 59 For student2 Enter name: pinky Enter marks: 89 For student3 Enter name: bob Enter marks: 45
#include<stdio.h> int main ( ){ FILE *fp; int eno; char ename[30]; float sal; fp =fopen ("emp.txt", "w"); // opening file in write mode printf ("enter the details of eno, ename, sal:"); scanf ("%d%s%f", &eno, ename, &sal); fprintf (fp, "%d%s%f", eno, ename, sal); fclose (fp); fp = fopen ("emp.txt", "r"); fscanf (fp, "%d%s%f", &eno, ename, &sal); printf ("employee no: = %d</p><p>", eno); printf ("employee name = %s</p><p>", ename); printf ("salary = %f</p><p>", sal); fclose (fp); return 0; }
enter the details of eno, ename, sal:1 Pinky 34000 employee no: = 1 employee name = Pinky salary = 34000.000000
以上是解釋C語言中檔案的寫入模式操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!