ch10_2.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch10_2.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. struct Person
  6. {
  7.   char name[20];
  8.   unsigned long id;
  9.   float salary;
  10. };
  11. Person pr1={"Frank Voltaire",12345678,3.35};
  12. void main()
  13. {
  14.   Person pr2;
  15.   pr2=pr1;      //结构变量的赋值
  16.   cout <<pr2.name <<"    "
  17.        <<pr2.id <<"    "
  18.        <<pr2.salary <<endl;
  19. }