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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:14:23+00:00 2026-05-12T08:14:23+00:00

Is it possible to define a C/C++ macro BUILD(a, i) which expands to x[0],

  • 0

Is it possible to define a C/C++ macro “BUILD(a, i)” which expands to “x[0], x[1], x[2], ..., x[i]” ? Like in

#define BUILD(x, 0) x[0]
#define BUILD(x, 1) x[0], x[1]
#define BUILD(x, 2) x[0], x[1], x[2]
...

It seems BOOST_PP_ENUM_PARAMS could do the job. I suppose I could just #include boost, but I’m interested in knowing how and why it works, anyone can explain?

I would like to call a function f(int, ...) which takes N int arguments x[i], 0 <= i < N. Where N is known to be ceil(sizeof(A) / sizeof(B)). So unfortunately, I cannot use varargs or templates.

  • 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-12T08:14:23+00:00Added an answer on May 12, 2026 at 8:14 am

    It is possible, but you have to do some manual work and have an upper limit.

    #define BUILD0(x) x[0]
    #define BUILD1(x) BUILD0(x), x[1]
    #define BUILD2(x) BUILD1(x), x[2]
    #define BUILD3(x) BUILD2(x), x[3]
    #define BUILD(x, i) BUILD##i(x)
    

    And note that i should be an integer literal, not a constant computed value.

    BTW, the preprocessor is more powerful than what is usually though, but the use of that power is quite tricky. Boost provides a library which eases some things, including iteration. See Boost Preprocessor Library. There is another library for such things, but its name escapes me at the moment.

    Edit: The boost preprocessor library uses a similar technique. With additional tricks to solve some corner cases problems, share implementation macros between higher level facilities, work around compiler bugs, etc… the usual boost complexity which is normal in the context of a general purpose library but which at times prevents easy understanding of the implementation principles. Probably the most noticeable trick is to add an indirection level so that if the second parameter can be a macro, it is expanded. I.e. with

    #define BUILD_(x, i) BUILD##i(x)
    #define BUILD(x, i) BUILD_(x, i)
    

    one can make the call

    #define FOO 42
    BUILD(x, FOO)
    

    which isn’t possible with what I exposed.

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

Sidebar

Related Questions

Is is possible to define a macro BREF(...): struct bits { int b0:1; int
With gcc (and possibly other compilers as well) it's possible to define a macro
Possible Duplicates: What’s the use of do while(0) when we define a macro? Why
In object type macro it is possible below, #define str this is a string
Possible Duplicate: Problem with Macros Hi all I have defined this macro: #define SQ(a)
Suppose I have the following macro: #define xxx(x) printf(%s\n,x); Now in certain files I
Possible Duplicates: What’s the use of do while(0) when we define a macro? Why
Possible Duplicate: C/C++: How to make a variadic macro (variable number of arguments) Just
Is it possible to define a macro in my Spring application context XML file
I want to define a macro to call the following, Is this possible? I

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.