Struct operator (->)

Source: Internet
Author: User

-> This symbol is a struct operator.
Each member in each struct variable can be accessed one by one through the struct operators "." or "->.
For example:
Define a struct
Struct student
{
Char name [10];
Char number [10];
Float score;
} Stu1;
Access the members, for example, assign values to the members.
Stu1.score = 65.5;
You can also write
Stu1-> score = 65.5;

 

 

The operators "." and "->" are mainly used to modify the values of structure members. The following is an example.
Struct Date {
Int year;
Int month;
Int Day;
};

Int main (INT argc, char * argv [])
{
Char end;
Struct date today;
Struct date * pdate;
Pdate = & today;

Today. Year = 2011;
Today. month = 2;
Today. Day = 1;

Printf ("year = % d \ n", today. year );
Printf ("month = % d \ n", today. month );
Printf ("Day = % d \ n", today. Day );

Printf ("year = % d \ n", pdate-> year );
Printf ("month = % d \ n", pdate-> month );
Printf ("Day = % d \ n", pdate-> day );
}


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.