标签:IV clu return c语言 style nbsp 技术分享 学习 ret
//指向指针的结构体 #include<stdio.h> struct student{ int num; char name[20]; }student1={1001,"xiaoming"}; int main(){ struct student *p; p=&student1; printf("学生的号数\t学生的名字\t\n"); printf("%d\t%s\n",(*p).num,(*p).name); return 0; }
标签:IV clu return c语言 style nbsp 技术分享 学习 ret
原文地址:https://www.cnblogs.com/Tobi/p/9237875.html