C Language study notes-structure.

Source: Internet
Author: User

Structure:

A user-defined, available data type that allows you to store different types of data items.

Definition/declaration:

struct type name {    member 1;    member 2;    .... Member N;} variables;

Instance:

// define struct type first, and then define structure body variable structstudent{Charno[ -];//School Number    Charname[ -];//name      Charsex[5];//Sex    intAge//Age}; structstudent STU1,STU2;//at this point stu1,stu2 is the student struct variable//define struct-body variables while defining struct-typestructstudent{Charid[ -];//School Number    Charname[ -];//name    Charsex[5];//Sex    intAge;//Age} stu1,stu2;structstudent Stu3;//typedefstructstudent{...} STUDENT; STUDENT stu1;

To access struct Members:

Use the member access operator (.) to access the members of the structure .

// Print printf ("STU1 Name:%s\n", stu1.name);

struct pointer:

// Definition/Declaration struct student *pstu1; // Assignment value pstu1 = &stu1; // visit pstu1, name;

Bit field:

...

C Language study notes-structure.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.