How to change the alignment of structures in C language

Source: Internet
Author: User

The default in C language is to align the longest data type in the struct with the standard such as

typedef struct _NODE

{

Short A;

int b;

char c;

}node;

will be aligned with int, or 4 bytes, when sizeof (NODE) =12

You can use #pragma pack (n) to change the alignment. The compiler selects the smaller one from "N" and the longest data type length in the struct as the alignment standard

such as #pragma pack (1), relative to the cancellation of alignment, 1B alignment, at this time sizeof (NODE) =7

How to change the alignment of structures in C language

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.