小霸王88的ChinaUnix博客
小霸王88
全部博文(321)
Makefie(2)
CFE(2)
mini2440(5)
TQ210(0)
TQ210(1)
mini2440(13)
TS流(10)
自动售货机(2)
百度手环(3)
DPMR(1)
集群技术(0)
AES(1)
RSA(0)
SHA(1)
MD5(0)
2017年(1)
2016年(10)
2015年(61)
2014年(187)
2013年(62)
Jxiang
victure8
upon_88
hg1995
瀚海书香
dyli2000
tekkaman
andyhzw
jeson201
chen4546
xiaopaox
sunpower
chz07088
草根老师
东汉魏国
lukeyzha
fanrwx
分类: C/C++
2014-06-24 12:01:55
原文地址:C语言实例47:结构体指针变量 作者: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; }
上一篇:C语言实例46:结构体数组
下一篇:C语言实例48:结构体指针数组
登录 注册