Module 14 of 15
C supports file operations like reading and writing using fopen(), fclose(), fprintf(), fscanf(). Files help store data permanently.
C में file handling के लिए fopen(), fclose() आदि functions का उपयोग होता है। इससे data permanent store किया जा सकता है।
#include <stdio.h>
int main() {
printf("Welcome to File Handling");
return 0;
}