• 大小: 2.88KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-指向结构体变量的指针(入门级实例102).zip

资源截图

代码片段和文件信息

// Pointer.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “iostream.h“
#include 

struct student
{
int num; //学生学号
char name[10]; //学生姓名
char sex; //学生性别
int age; //学生年龄
float score; //学生成绩
};

int main()
{
   struct student student1={1001“小李“‘M‘2092.5}; //定义结构体变量
   struct student *p; //定义指针变量指向结构体类型
   p=&student1; //使指针指向结构体变量
   printf(“学号:%d\n“p->num); //输出学生学号
   printf(“姓名:%s\n“p->name); //输出学生姓名
   printf(“性别:%c\n“p->sex); //输出学生性别
   printf(“年龄:%d\n“p->age); //输出学生年龄
   printf(“成绩:%f\n“p->score); //输出学生成绩
   getch();
   return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         835  2010-10-20 09:04  Pointer\Pointer.cpp
     文件        4548  2010-10-20 08:46  Pointer\Pointer.dsp
     文件         539  2010-10-20 08:46  Pointer\Pointer.dsw
     文件         294  2010-10-20 08:46  Pointer\StdAfx.cpp
     文件         769  2010-10-20 08:46  Pointer\StdAfx.h

评论

共有 条评论