摘要: #include #include int main( void ) { FILE *stream; typedef struct _tt{ int a; int b; char buf[20]; }tt; tt temp; temp.a=10; temp.b=20; strcpy(temp.buf,"hello"); int c=sizeof(temp); ... 阅读全文
posted @ 2007-10-23 15:33 ahuo 阅读(693) 评论(0) 推荐(0) 编辑