填空题

以下程序设计功能是:将结构体变量time 中的内容写到文件中。
#include <iostream>
using namespace std;
struct date

int year;
int month;
int day;
int main ( )
date time = 2005, 1, 1 ;
ofstream outdate;
outdate.open( "d:\\date.txt", ios :: binary );
outdate.write(____________, sizeof( tt ) );
outdate.close();
return 0;
则程序中空白处应该填入的语句为 【15】

【参考答案】

(char*)&time