标签:使用 include 定义 bsp oid oat amp nbsp pre
#include<stdio.h> struct student{ int num; char name[20]; float score; }; int main(void){ struct student s1={20,"bowen",89.0},*sp; //struct stduent *sp; sp=&s1; printf("%d %s %f",sp->num,sp->name,sp->score); }
标签:使用 include 定义 bsp oid oat amp nbsp pre
原文地址:https://www.cnblogs.com/sunnybowen/p/8973040.html