在C語言中,可以使用stdio.h頭文件中的函數(shù)來讀寫txt文件。
打開文件:可以使用fopen函數(shù)來打開一個(gè)txt文件。該函數(shù)的原型為:FILE *fopen(const char *filename, const char *mode)
。
讀取文件:可以使用fgets函數(shù)從打開的文件中讀取內(nèi)容。該函數(shù)的原型為:char *fgets(char *str, int n, FILE *stream)
。
FILE *file = fopen("example.txt", "r");
if (file == NULL) {
printf("Failed to open file.\n");
return 1;
}
char buffer[100];
while (fgets(buffer, sizeof(buffer), file) != NULL) {
printf("%s", buffer);
}
fclose(file);
int fprintf(FILE *stream, const char *format, ...)
。
FILE *file = fopen("example.txt", "w");
if (file == NULL) {
printf("Failed to open file.\n");
return 1;
}
fprintf(file, "Hello, World!\n");
fprintf(file, "This is a test file.\n");
fclose(file);
以上代碼演示了如何讀取和寫入txt文件。需要注意的是,在使用完文件后,需要使用fclose函數(shù)關(guān)閉文件。