struct stu  

 char name[10]; 
 int age;  
}; 
 struct stu mystu[3]; 

fwrite(mystu,sizeof(mystu),1,fp); 


从fwrite中注意到sizeof(mystu)不是一个数据结构struct stu的长度,而是三个此结构的长度。


以下是查看Linux版本信息的方法:

Linux _Linux