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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch10_3.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. #include <string.h>
  6. struct Person
  7. {
  8.   char name[20];
  9.   unsigned long id;
  10.   float salary;
  11. };
  12. void main()
  13. {
  14.   Person pr1;
  15.   Person* prPtr;
  16.   prPtr=&pr1;
  17.   strcpy(prPtr->name,"David Marat");
  18.   prPtr->id=987654321;
  19.   prPtr->salary=335.0;
  20.   cout <<prPtr->name <<"    "
  21.        <<prPtr->id <<"    "
  22.        <<prPtr->salary <<endl;
  23. }