Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8158649
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T17:40:31+00:00 2026-06-06T17:40:31+00:00

Is it valid C to declare a struct and define values enclosed in {}?

  • 0

Is it valid C to declare a struct and define values enclosed in {}?

struct name new_name[] {
    {"value1"},
    {"value2"},
    {"value3"},
}

Where:

struct name {
    union {
        char *value1;
    } n_u;

    char *value2;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T17:40:33+00:00Added an answer on June 6, 2026 at 5:40 pm

    What you’ve posted is invalid because it’s missing an equals sign before the initializer (and also trailing semicolons). Otherwise, it’s legal but somewhat hard to read because it doesn’t initialize every field, and doesn’t use a full set of braces. In a fully-braced initializer, you’ll have a pair of braces around the list of values for every array, struct, or union. In this case you have an array of structs with unions in them, so there should be 3 levels of braces for optimum readability. An equivalent with everything spelled out is:

    struct name new_name[] = {
        {{"value1"}, NULL},
        {{"value2"}, NULL},
        {{"value3"}, NULL},
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I declare a new struct with the name of Struct I have a generic
What am I doing wrong here? Declare @starttimestamp datetime = getdate(); RAISERROR(N'Code not valid
Possible Duplicate: What are valid values for the id attribute in HTML? Underscores seem
struct Item { int i; char * x; }; Item all[] = { {0,
In C99, you can declare a flexible array member of a struct as such:
Is the following example a valid complete translation unit in C? struct foo; struct
Is it possible to declare a class in C# that is only valid to
Is it possible in XAML to declare an alias name for a type? Let
Considers me@there valid. Is not a TLD required? try { foreach (var email in
I have a valid reason for wanting to do this, but it's a long

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.