結構體的學習

Struct1.0 #include<stdio.h> struct student { char name[15]; int id; float score; } ; int main() { struct student wn={"wangning",174842,99}; printf("%s\t%d\t%.2f\n",wn.name,wn.id,wn.score); wn.id = 666
相關文章
相關標籤/搜索