#include <iostream>
#include <stdio.h>
using namespace std;
void main()
{
int c;
FILE *f;
errno_t err;
err = fopen_s(&f, "D:\t.txt", "r+");
fscanf_s(f, "%d", &c);
fclose(f);
cout << c << endl;
system("pause");
}
code ko chạy đc m.n xem giúp e nha