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 939213
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T21:45:16+00:00 2026-05-15T21:45:16+00:00

Is is possible in C to create structs inline? typedef struct { int x;

  • 0

Is is possible in C to create structs “inline”?

typedef struct {
    int x;
    int y;
} Point;
Point f(int x) {
    Point retval = { .x = x, .y = x*x };
    return retval;
}
Point g(int x) {
    return { .x = x, .y = x*x };
}

f is valid, g not. Same applies to function calls:

float distance(Point a, Point b) {
    return 0.0;
}
int main() {
    distance({0, 0}, {1, 1})
}

Is it somehow possible to create these structs without having to use the extra temporary variable (which will be optimized away by the compiler i guess, but readability counts too)?

  • 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-05-15T21:45:17+00:00Added an answer on May 15, 2026 at 9:45 pm

    With a C99 compiler, you can do this.

    Point g(int x) {
        return (Point){ .x = x, .y = x*x };
    }
    

    Your call to distance would be:

    distance((Point){0, 0}, (Point){1, 1})
    

    They’re called Compound literals, see e.g. http://docs.hp.com/en/B3901-90020/ch03s14.html , http://gcc.gnu.org/onlinedocs/gcc-3.3.1/gcc/Compound-Literals.html , http://home.datacomm.ch/t_wolf/tw/c/c9x_changes.html for some info.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 525k
  • Answers 525k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I am not sure why this is behaving this way.… May 16, 2026 at 10:16 pm
  • Editorial Team
    Editorial Team added an answer The solution was to merge all the MKPolygonViews into one… May 16, 2026 at 10:16 pm
  • Editorial Team
    Editorial Team added an answer The Tkinter text widget is remarkably powerful, but you do… May 16, 2026 at 10:16 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

Considering these two structs: struct point { int x,y; }; struct pinfo { struct
Im trying to create an array of tm* structs, and then return them at
Is it possible to use boost::fusion::invoke function to call a function that has default
Is something like this possible? // // create a delegate Action<Type> action = (t)
Possible Duplicate: create smart device cab through msbuild I know MSBUild struggles to build
Is it possible to create a socket based multi-player game client using html5? Does
Is it possible to create a custom @Aspect and apply it to the Classes/Methods
Plug-in systems in C++ are hard because the ABI is not properly defined, and
I'd like to know whether the following is possible with C# properties. I have
I'm in the process of designing a .NET API to allow developers to create

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.