「要成爲絕世高手,並不是一朝一夕,除非是天生武學奇才,可是這種人…萬中無一」
編程
做者數組
閆小林微信
白天搬磚,晚上作夢。我有故事,你有酒麼?app
例37:C語言實現把一個學生的信息(包括學號、姓名、姓名、地址)放在一個結構體變量中。而後輸出這個學生的信息。
函數
#include<stdio.h>//頭文件
int main()//主函數
{
struct student_Information //定義學生結構體
{
int num; //學號
char name[20];//名字
char sex[20];//性別
char address[20]; //地址
}
student_Information={8888,"閆小林","男生","廣州市"};//賦值
printf("學號是:%d\n",student_Information.num);//輸出學號
printf("姓名是:%s\n",student_Information.name);//輸出名字
printf("性別是:%s\n",student_Information.sex);//輸出性別
printf("住址是:%s\n",student_Information.address);//輸出住址
return 0;//主函數返回值爲0
}
學號是:8888
姓名是:閆小林
性別是:男生
住址是:廣州市
--------------------------------
Process exited after 2.791 seconds with return value 0
請按任意鍵繼續. . .
%s
學號是:8888
姓名是:?
性別是:?
住址是:?
--------------------------------
Process exited after 1.785 seconds with return value 0
請按任意鍵繼續. . .
本文分享自微信公衆號 - C語言入門到精通(c_printf)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。工具