文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C语言实例47:结构体指针变量

C语言实例47:结构体指针变量

时间:2010-07-01  来源:hnrainll


#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char *argv[])
{
    struct student
    {
        long num;
        char name[20];
        char sex[10];
        float score;
    };

    struct student stu;
    struct student *p;

    p = &stu;

    stu.num = 97032;
    strcpy(stu.name, "小明");
    strcpy(stu.sex, "男");
    stu.score = 98.5;

    printf("学号: %ld\n姓名:%s\n性别:%s\n分数:%4.2f\n",stu.num, stu.name, stu.sex, stu.score);
    printf("\n");

    printf("学号: %ld\n姓名:%s\n性别:%s\n分数:%4.2f\n",(*p).num, (*p).name, (*p).sex, (*p).score);
    system("pause");
    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载