c 結構體 簡單的瞭解

來源:互聯網
上載者:User

標籤:使用   c   ar   har   字串   對象   

1.聲明一個學生類的 結構體

struct Student{

int age;

char name[20];//長度為20的字串

int weiht;//像正常一樣的申請變數,這個變數屬於結構體的一部分

};//這分號 必須有,不然報錯

結構體和類差不多,必須有對象才能操作,如:stcuct Stdent std;

賦值:

std.age = 10;

std.weiht=100;

字串沒法整體賦值,所以使用函數strcpy,

strcy(std.name,"小明");

 

輸出:

printf("我叫%s,我年齡:%d,體重:%d”,std.name,std.age,atd.weiht);

輸出為:我叫小明,我年齡10,體重100.

賦值也可以在結構體聲明時候初始化:

stcuct Stdent std={10,“小明”,100};

 

結構體數組:

struct Student s[100];

只要把這裡的s[a]代替上邊的的std即可。

a可以是0 - 100 以內的任意數。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.