От: | falcon8 | ||
Дата: | 16.01.08 14:25 | ||
Оценка: |
#include <fstream>
#include <iostream>
struct TEST
{
char pole1[10];
char pole2[10];
char pole3;
char pole4[9];
};
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
TEST t;
ifstream f("1.txt",ios::in);
f.read((char*)&t,sizeof t);
cout<< t.pole1 << endl;
return 0;
}