[C Language] Data Structure-preparation knowledge structure, data structure preparation

Source: Internet
Author: User

[C Language] Data Structure-preparation knowledge structure, data structure preparation

Struct

Why struct?

To represent some complex data, common basic type variables cannot meet the requirements.

What is struct?

Struct is a composite data type defined by the user based on actual needs.

How to use struct

1. Two Methods

 

Generally, struct pointers are used.

Struct Student * pst;

Pst = & st;

Pst-> name = "shihan"; // <=> (* pst). name

Name in the struct variable pointed to by pst

 

2. struct Student st;

Allocate memory space for this struct, which is a junk Value

 

Notes

1. struct variables cannot be addition, subtraction, multiplication, division, but can be assigned to each other

2. Common struct variables and struct pointer variables as function parameters

Struct Student st;

F (& st );

// Pass a pointer to the function parameter, which is fast and saves space and can break through local variables in the function.

Void f (struct Student * pst ){

(* Pst). name = "shi ";

Strcpy (pst-> name, "han"); // method 2

}

Related Article

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.