फ़ाइल को रीडिंग मोड में खोलें। यदि फ़ाइल मौजूद है, तो फ़ाइल में पंक्तियों की संख्या गिनने के लिए एक कोड लिखें। यदि फ़ाइल मौजूद नहीं है, तो यह एक त्रुटि प्रदर्शित करता है कि फ़ाइल वहां नहीं है।
फ़ाइल अभिलेखों का एक संग्रह है (या) यह हार्ड डिस्क पर एक जगह है जहाँ डेटा स्थायी रूप से संग्रहीत किया जाता है।
फाइलों पर किए गए ऑपरेशन निम्नलिखित हैं -
-
फ़ाइल का नामकरण
-
फ़ाइल खोलना
-
फ़ाइल से पढ़ना
-
फ़ाइल में लिखा जा रहा है
-
फ़ाइल बंद करना
सिंटैक्स
फ़ाइल को खोलने और नाम देने के लिए सिंटैक्स निम्नलिखित है -
1) FILE *File pointer; Eg : FILE * fptr; 2) File pointer = fopen ("File name", "mode"); Eg : fptr = fopen ("sample.txt", "r"); FILE *fp; fp = fopen ("sample.txt", "w");
कार्यक्रम 1
#include <stdio.h> #define FILENAME "Employee Details.txt" int main(){ FILE *fp; char ch; int linesCount=0; //open file in read more fp=fopen(FILENAME,"r"); if(fp==NULL){ printf("File \"%s\" does not exist!!!\n",FILENAME); return -1; } //read character by character and check for new line while((ch=getc(fp))!=EOF){ if(ch=='\n') linesCount++; } //close the file fclose(fp); //print number of lines printf("Total number of lines are: %d\n",linesCount); return 0; }
आउटपुट
Total number of lines are: 3 Note: employee details.txt file consist of Pinky 20 5000.000000 Here total number of line are 3
कार्यक्रम 2
इस कार्यक्रम में, हम देखेंगे कि किसी फ़ाइल में कुल पंक्तियों की संख्या कैसे पता करें जो फ़ोल्डर में मौजूद नहीं है।
#include <stdio.h> #define FILENAME "sample.txt" int main(){ FILE *fp; char ch; int linesCount=0; //open file in write mode fp=fopen(FILENAME,"w"); printf ("enter text press ctrl+z of the end"); while ((ch = getchar( ))!=EOF){ fputc(ch, fp); } fclose(fp); //open file in read more fp=fopen(FILENAME,"r"); if(fp==NULL){ printf("File \"%s\" does not exist!!!\n",FILENAME); return -1; } //read character by character and check for new line while((ch=getc(fp))!=EOF){ if(ch=='\n') linesCount++; } //close the file fclose(fp); //print number of lines printf("Total number of lines are: %d\n",linesCount); return 0; }
आउटपुट
enter text press ctrl+z of the end Hi welcome to Tutorials Point C Pogramming Question & answers ^Z Total number of lines are: 2