标签:print div printf %s float struct span oid std
#include<stdio.h> struct student{ int num; char name[20]; float score; } stu={112301,"bowen1",20}; void print(struct student stux); int main(void){ print(stu); } void print(struct student stux){ printf("%d %s %0.1f",stux.num,stux.name,stux.score); }
标签:print div printf %s float struct span oid std
原文地址:https://www.cnblogs.com/sunnybowen/p/8977109.html