Video giải thích chi tiết vềCách ghi dữ liệu vào File văn bản trong lập trình C | Tự học lập trình C
Code ví dụ
#include "stdio.h"
#include "stdlib.h"
int main(){
FILE *f;
// 1 - Tao file
// 2 - Mo file
f = fopen("Bai_088.txt", "w");
if(f == NULL){
printf("\n Loi tao hoac mo file");
exit(1);
}
// 3 - Doc hoac ghi
int n;
printf("\nNhap vao so n: "); scanf("%d", &n);
fprintf(f, "%d", n);
// 4 - Dong file
fclose(f);
return 0;
}
Không có nhận xét nào:
Đăng nhận xét