Error: Expected expression before 'struct

Source: Internet
Author: User
Tags define definition

In Linux C/C ++ programming, the error "error: Expected expression before 'struct '" is often encountered. This error is generally caused by undefined macros (macro-set macros) or parameters, the compiler may determine that the current statement is invalid in the following situations.

1. the header file IOCTL. H is missing.

The ioctl function cannot be compiled when vidioc_querycap is used.

Solution:

# Include <sys/IOCTL. h>

2. # define Error

For example:

# Define x = 5

Int z = x + 1;

Solution:

Fix # define definition. In addition, complicated expression macro definition is also encountered. If there are still undefined macros or parameters in the definition, this article will report errors. For example:

# Define ctl_header_len (offsetof (struct ntp_control, data ))

Int shouldbesize = (ctl_header_len + Count + 3 )&~ 3;

The reason is that there is no header file containing the offsetof function. After adding # include <stddef. h>, there is no error.

3. C/C ++ reserved words are used

For example:

Typedef struct {

Int X;

} Struct;

Solution:

Modify the struct typedef name. It is generally not recommended to use a reserved word name.

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.